Cod sursa(job #555035)

Utilizator dj_al3xin0Gaurean Alexandru Florin dj_al3xin0 Data 15 martie 2011 11:16:35
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main()
{
	int n, m;
	fin >> n >> m ;
	fout << n + m ;
	fin.close();
	fout.close();
	return 0;
}