Cod sursa(job #2648242)

Utilizator Andronie123Marius Andronie Andronie123 Data 9 septembrie 2020 17:20:40
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

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