Cod sursa(job #2629890)

Utilizator AndreiV21Andrei Bejan AndreiV21 Data 23 iunie 2020 10:41:18
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 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;


	return 0;

}