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