Cod sursa(job #289406)
Utilizator | Data | 26 martie 2009 18:50:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
//100 pcte
#include<fstream.h>
int main()
{ ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
f>>a>>b;
g<<(a+b);
f.close();
g.close();
return 0;
}