Cod sursa(job #413800)

Utilizator florin.mFlorin Mihalache florin.m Data 9 martie 2010 10:15:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

int main()
{
	using namespace std;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	int a,b;
	f >> a >> b;
	g << a+b;	
	return 0;
}