Cod sursa(job #730082)

Utilizator ihgerCatarig Reghinuta ihger Data 3 aprilie 2012 16:52:28
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;
int main ()
{
	ifstream fin ("adunare.in");
	int a, b;
	fin >> a >> b;
	fin.close();
	
	ofstream fout ("adunare.out");
	fout << a+b;
	fout.close();
	return 0;
}