Cod sursa(job #542089)
Utilizator | Data | 25 februarie 2011 19:35:07 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
long a , b, c;
ifstream f("aplusb.in");
ofstream g("aplusb.out");
int main()
{
f>>a>>b;
f.close();
g<<a+b;
g.close();
return 0;
}