Cod sursa(job #533699)
Utilizator | Data | 14 februarie 2011 14:25:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
int main()
{ ifstream f("ab.in");
ofstream g("ab.out");
int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 0;
}