Cod sursa(job #577017)

Utilizator ZoLeeKhaSzasz Zoltan ZoLeeKha Data 9 aprilie 2011 17:57:35
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream.h>

using namespace std;

int main()
{	ifstream f("adunare.in");
	ofstream g("adunare.out");
	int a,b;
	f>>a;
	f>>b;
	g<<a+b;
	f.close();
	g.close();
}