Cod sursa(job #2711462)

Utilizator grophous.Borcila Vasile grophous. Data 24 februarie 2021 10:25:32
Problema A+B Scor 100
Compilator cpp-32 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");

int main()
{
	int a,b;
	fi>>a>>b;
	fo<<a+b<<'\n';
	return 0;
}