Cod sursa(job #294754)

Utilizator backsPopescu Cristian backs Data 2 aprilie 2009 19:01:25
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream.h>
#include <fstream.h>
using namespace std;
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;
}