Cod sursa(job #625367)
| Utilizator | Data | 24 octombrie 2011 14:29:02 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
int main ()
{long a,b;
fstream f("adunare.in" ,ios::in) ,g("adunare.out" ,ios::out) ;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}