Cod sursa(job #282973)

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

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

	long a,b,s;

	In>>a>>b;
	s=a+b;
	Out<<s<<'\n';

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

}