Cod sursa(job #158795)
Utilizator | Data | 13 martie 2008 20:22:51 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
void main()
{f>>a>>b;
g<<a+b;
f.close();
g.close();
}