Cod sursa(job #790817)
Utilizator | Data | 22 septembrie 2012 13:54:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream.h>
int main()
{ long a,b;
ifstream f("aplusb.in");
ofstream g("aplusb.out");
f>>a>>b;
g<<a+b;
return 0;
}