Cod sursa(job #359288)

Utilizator bocacristiBoca Nelu Cristian bocacristi Data 26 octombrie 2009 15:09:49
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>
using namespace std;

int main()
{
	long int a = 0, b = 0;
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	fin >> a >> b;
	fout << a+b;
	
	fout.close();
	fin.close();

	return 0;
}