Cod sursa(job #2429607)

Utilizator MushyMushyToscariu Alberto Ionut MushyMushy Data 10 iunie 2019 15:24:53
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
	unsigned int a;
	unsigned int b;
	ifstream f("adunare.in");
	
	f >> a;
	f >> b;
	f.close;
	ofstream g("adunare.out");
	g << a + b << endl;
	g.close;
	return 0;
}