Cod sursa(job #2645960)

Utilizator PepeRotileanu Petre Pepe Data 30 august 2020 11:33:43
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()
{
	int a, b; 
	ifstream fout("adunare.in");
	ofstream fin("adunare.out");
	fout >> a >> b;
	fin << a + b;
}