Cod sursa(job #322189)

Utilizator BlackParadeMihai Craciun BlackParade Data 8 iunie 2009 10:58:37
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream.h>
int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	int a,b;
	f>>a>>b;
	g<<a+b;
	f.close();
	g.close();
	return 0;
}