Cod sursa(job #161469)

Utilizator vlad_dndpavel vlad vlad_dnd Data 18 martie 2008 11:13:18
Problema A+B Scor 0
Compilator c Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
int  main ()
{
fstream f("adunare.in",ios::in),g("adunare.out",ios::out);
long int x,y;
f>>x;
f>>y;
g<<x+y<<"\n";
f.close();
g.close();
return 0;
}