Cod sursa(job #297477)

Utilizator backsPopescu Cristian backs Data 5 aprilie 2009 13:48:30
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.12 kb
#include <fstream.h>
int main()
{
int a,b;
ifstream f("date.in");
ofstream g("date.out");
f>>a>>b;
g<<a+b;
}