Cod sursa(job #3126101)

Utilizator maccelmare@gmail.comMacovei Alexandru-Fabian [email protected] Data 6 mai 2023 01:29:06
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.28 kb
#include <iostream>
#include <fstream>
#include <algorithm>
#include <cmath>
#include <vector>
//#include "functiiAjutatoare.h"

using namespace std;

int main()
{

	int a, b;
	ifstream fin("adunare.in");
	fin >> a >> b;
	ofstream fout("adunare.out");
	fout << a + b;
}