Cod sursa(job #254842)

Utilizator octavianOctavian Crintea octavian Data 7 februarie 2009 19:47:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
	unsigned long long a,b;
	a=111111111111111111LL;
	f>>a>>b;f.close();
	g<<a+b;g.close();
	return 0;
}