Cod sursa(job #361109)

Utilizator cristian9Cristian Zloteanu cristian9 Data 3 noiembrie 2009 19:21:17
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include<fstream>
using namespace std;
int main()
{ifstream q ("A+B.in");
ofstream w ("A+B.out");
int a,b;
q>>a>>b;
w<<a+b;
return 0;
}