Cod sursa(job #669709)
Utilizator | Data | 27 ianuarie 2012 16:30:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
int main()
{long x, y;
ifstream f("adunare.in");
f>>x>>y;
f.close();
ofstream g("adunare.out");
g<<x+y;
g.close();
return 0;
}