Cod sursa(job #282969)

Utilizator yotherockerPuia Tudor yotherocker Data 18 martie 2009 16:22:02
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>

void main()
{
	ifstream In("adunare.in");
	ofstream Out("adunare.out");

	long a,b;

	In>>a>>b;
	Out<<a+b<<endl;

	In.close();
	Out.close();

}