Cod sursa(job #824270)

Utilizator tibi9876Marin Tiberiu tibi9876 Data 26 noiembrie 2012 09:08:22
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;

int x,y;

int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f >> x >> y;
	g << x+y;
	return 0;
}