Cod sursa(job #2380359)

Utilizator rarestare1Python rarestare1 Data 14 martie 2019 20:36:22
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;
int main()
{
	ifstream fi("adunare.in");
	ofstream fo("adunare.out");
	int a, b;
	fi >> a >> b;
	fo << a + b;
}