Cod sursa(job #779081)

Utilizator mathexMathe Mihai mathex Data 16 august 2012 16:34:45
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
using namespace std;
#include<fstream>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
	int a,b;
	fin>>a;
	fin>>b;
	fout<<a+b;
	return 0;
}