Cod sursa(job #2132296)

Utilizator widualkpkClaudiu And widualkpk Data 15 februarie 2018 17:42:21
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 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;
	return 0;
}