Cod sursa(job #754198)
Utilizator | Data | 31 mai 2012 23:14:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream>
int main()
{int a,b;
ifstream f ("adunare.in");
ofstream g ("adunare.out");
f>>a>>b;
g<<a+b;
f.close(); g.close();
return 0;
}