Cod sursa(job #629031)

Utilizator octav1234Pocola Tudor Octavian octav1234 Data 2 noiembrie 2011 16:30:37
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
int main()
{
	long a,b;
	ifstream f("adunare.in");
	f>>a>>b;
	f.close();
	ofstream g("adunare.out");
	g<<a+b<<'\n';
	g.close();
 	return 0;
	
}