Cod sursa(job #29850)

Utilizator GooDyUngureanu Daniel GooDy Data 11 martie 2007 15:03:01
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream.h>
#include<fstream.h>
main()
{
long a,b,s;
ifstream f("adunare.in");
f>>a;
f>>b;
f.close();
s=a+b;
ofstream g("adunare.out");
g<<s;
g.close();
}