Cod sursa(job #2192788)

Utilizator NGMihaiNeamt Mihai NGMihai Data 7 aprilie 2018 12:29:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

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

int main()
{
	int a, b;
	fin >> a >> b;
	fout << (a + b);
	return 0;
}