Cod sursa(job #3338265)

Utilizator newLerLorand New Eros newLer Data 1 februarie 2026 23:56:52
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>

using namespace std;

int main()
{
	ifstream ifs("adunare.in");
	ofstream ofs("adunare.out");

	int a, b;
	ifs >> a >> b;
	
	ofs << a + b << endl;

	return 0;
}