Cod sursa(job #2730544)

Utilizator ChadRayioana david ChadRay Data 26 martie 2021 15:32:38
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>
using std::fstream;
using std::cin;
using std::cout;


int main()
{

	fstream LOGI("adunare.in");
	int n1, n2;
	LOGI >> n1;
	LOGI >> n2;
	fstream LOGO("adunare.out");
	LOGO << n1 + n2;
	
}