Cod sursa(job #126639)
Utilizator | Data | 22 ianuarie 2008 17:11:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<fstream.h>
void main()
{long int a, b;
fstream f("adunare.in",ios::in);
f>>a;
f>>b;
f.close();
fstream g("adunare.out",ios::out);
g<< a+b;
g.close();}