Cod sursa(job #705181)

Utilizator IGS_013Ivanciuc Gheorghe Stefan IGS_013 Data 3 martie 2012 17:07:17
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>

int main()
{
	long int A,B;
	std::ifstream f;
	f.open ("adunare.in");
	f>>A>>B;
	f.close();
	std::ofstream g;
	g.open ("adunare.out");
	g<<A+B;
	g.close();
	return 0;
}