Cod sursa(job #2545593)

Utilizator MogageMogage Nicolae Mogage Data 13 februarie 2020 12:19:39
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
#include <vector>
std::ifstream fin("pbinfo.in");
std::ofstream fout("pbinfo.out");

int main()
{
	int a, b;
	fin >> a >> b;
	fout << a + b;
	return 0;
}