Cod sursa(job #672268)

Utilizator firewavesBirsu Ion firewaves Data 1 februarie 2012 20:13:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
ifstream h("adunare.in");
ofstream g("aduanre.out");
int a,b;
int main()
{
	h>>a>>b;
	g<<a+b;
	g.close();
	h.close();
	return 0;
}