Cod sursa(job #509974)
Utilizator | Data | 12 decembrie 2010 11:18:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream in("adunare.in");
int x, y;
in >> x;
in >> y;
in.close();
ofstream out("adunare.out");
out << x+y;
out.close();
return 0;
}