Cod sursa(job #716632)

Utilizator laueDancu Laurentiu aka laue Data 19 martie 2012 08:04:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
using namespace std;
int main()
{
	ifstream f("adunare.in");
	int x,y;
	f>>x>>y;
	f.close();
	ofstream g("adunare.out");
	g<<x+y;
	g.close();
}