Cod sursa(job #51420)
Utilizator | Data | 12 aprilie 2007 13:09:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#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;
}