Cod sursa(job #305592)

Utilizator popoiu.georgeGeorge Popoiu popoiu.george Data 17 aprilie 2009 21:12:40
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;

fstream f("adunare.in",ios::in),g("adunare.out",ios::out);

long a,b,s=0;

main()
{
f>>a>>b;
s=a+b;
g<<s;
}