Cod sursa(job #294737)

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

#include<fstream.h>
ifstream f("date.in",ios::in);
ofstream g("date.out",ios::out);

int main()
{
int a,b;
f>>a>>b;
g<<(a+b);
f.close();
g.close();
return 0;
}