Cod sursa(job #2645340)

Utilizator ZixtarChioru Dan Zixtar Data 27 august 2020 20:18:55
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>

std::ifstream f("adunare.in");
std::ofstream g("adunare.out");

int main()
{
	int a, b;
	f >> a >> b;
	g << a + b;
	f.close();
	g.close();
	return 0;
}