Cod sursa(job #823913)

Utilizator BogdanMacoMacovei Bogdan BogdanMaco Data 25 noiembrie 2012 18:38:28
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.2 kb
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
	int a,b,S;
	fin>>a>>b;
	S=a+b;
	fout<<S;
	fin.close();
	fout.close();
	return 0;
}