Cod sursa(job #752032)

Utilizator alexiordacheIordache Alexandru alexiordache Data 27 mai 2012 17:49:14
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<fstream.h>
ifstream in("adunare.in");
ofstream out("adunare.out");
using namespace std;
int main()
{
int a,b;
in>>a>>b;
out<<a+b;
in.close();
out.close();
return 0;
}