Cod sursa(job #2231809)

Utilizator MIGAAndrei Miga MIGA Data 16 august 2018 00:17:45
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <fstream>

using namespace std;

int main()
{
	int a, b;
	ifstream fin;
	ofstream fout;
	fin.open("adunare.in");
	fout.open("adunare.out");
	fin >> a >> b;
    fin.close();
	fout << a + b;
	fout.close();
	return 0;
}