Cod sursa(job #2591745)

Utilizator AlexyzAlexandru Anghel Alexyz Data 31 martie 2020 10:40:52
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb

#include<fstream>
using namespace std;
ifstream f("adunare.in.txt");
ofstream g("adunare.out.txt");
int main()
{
	long int a, b;
	f >> a >> b;
	g << a + b;
	f.close();
	g.close();
}