Cod sursa(job #2629896)

Utilizator AndreiV21Andrei Bejan AndreiV21 Data 23 iunie 2020 10:51:22
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include	<iostream>
#include	<fstream>
using namespace std;



int main()
{
	ifstream fin("adunare.in.txt");
	ofstream fout("adunare.out.txt");
	int a, b;
	fin >> a>>b;

	fout << a+b << endl;
	fin.close();

	return 0;

}