Cod sursa(job #2427684)

Utilizator ageneohasMart Florin ageneohas Data 1 iunie 2019 16:30:16
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
int main()
{
	int a, b;
	ifstream f("anunare.in");
	ofstream g("anunare.out");
	f >> a;
	f >> b;
	g << a + b;
	f.close();
	g.close();

}