Cod sursa(job #490682)

Utilizator 6301263George 6301263 Data 7 octombrie 2010 14:29:13
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;
int main()
{	
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	int a,b;
	f>>a>>b;
	g<<a+b;
	return 0;
}