Cod sursa(job #415846)

Utilizator thesilverhand13FII Florea Toma Eduard thesilverhand13 Data 11 martie 2010 21:36:08
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
int a,b;
int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	if(a+b<2000000000)
		g<<a+b;
	return 0;
}