Cod sursa(job #792792)

Utilizator Andrei.AlexandruAndrei Alexandru Andrei.Alexandru Data 30 septembrie 2012 13:10:22
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream.h>

int main()

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