Cod sursa(job #851694)

Utilizator vazanIonescu Victor Razvan vazan Data 10 ianuarie 2013 12:36:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>
using namespace std;
int main()
{
	ifstream in("adunare.in");
	ofstream out("adunare.out");
	unsigned long a, b;
	in>>a>>b;
	in.close();
	out<<a+b;
	out.close();
	return 0;
}