Cod sursa(job #2446250)

Utilizator thestroHariuc Liviu thestro Data 7 august 2019 15:39:13
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
	ifstream in("abc.in");
	int d, e;
	in >> d >> e;
	ofstream out("abc.out");
	cout << d + e << endl;
	system("pause");
	return 0;
}