Cod sursa(job #17271)

Utilizator georgepalPal George Catalin georgepal Data 15 februarie 2007 16:03:13
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
int main()
{ long a,b,s;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
s=a+b;
g<<s;
f.close();g.close();
return 0;
}