Cod sursa(job #473561)

Utilizator un_fel_de_z3uBogdan un_fel_de_z3u Data 30 iulie 2010 12:49:52
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream.h>
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
int main()
{f>>a>>b;
g<<(a+b);
f.close();
g.close();
return 0;

}