Cod sursa(job #1148297)

Utilizator teoceltare01teo cons teoceltare01 Data 20 martie 2014 17:46:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
	int a,b;
	fin>>a>>b;
	fout<<a+b;
}