Cod sursa(job #723415)

Utilizator cdascaluDascalu Cristian cdascalu Data 25 martie 2012 14:31:04
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
int main()
{
	ifstream f("adunare.in");
	long a,b,c;

	f>>a>>b;c=a+b;
	f.close();
	ofstream g("adunare.out");
	g<<c;
	g.close();
	return 0;
}