Cod sursa(job #2645492)

Utilizator PepeRotileanu Petre Pepe Data 28 august 2020 16:10:18
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
	ifstream in (adunare.in);
	ofstream out (adunare.out);
	int a, b;
	in >> a >> b;
	out << a + b;

}