Cod sursa(job #424759)

Utilizator andu.andr3yBoznea Andrei andu.andr3y Data 25 martie 2010 10:23:34
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<iostream>
#include<fstream>
int a,b,x;
using namespace std;
ifstream f("flyli.in");
ofstream g("flyli.out");
int main()
{
	x=0;
	f>>a;
	f>>b;
	x=a+b;
	g<<x;
g.close();
f.close();
return 0;

}