Cod sursa(job #265436)

Utilizator pykhNeagoe Alexandru pykh Data 23 februarie 2009 21:32:44
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.12 kb
#include <fstream.h>
main()
	{
	int a,b;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
	}