Cod sursa(job #294729)

Utilizator backsPopescu Cristian backs Data 2 aprilie 2009 18:41:59
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb

#include<fstream.h>
int main()
{
int a,b,s=0;
ifstream f("date.in",ios::in);
ofstream g("date.out",ios::out);
f>>a;
f>>b;
s=a+b;
g<<s;
f.close();g.close();
return 0;
}