Cod sursa(job #625365)
Utilizator | Data | 24 octombrie 2011 14:27:50 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fsream.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;}