Cod sursa(job #3031306)

Utilizator andrei_C1Andrei Chertes andrei_C1 Data 19 martie 2023 14:08:07
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#ifndef INFOARENA
c
#endif

#include <bits/stdc++.h>

using namespace std;

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

int main() {
	ios_base :: sync_with_stdio(false);

	int a, b;
	fin >> a >> b;
	fout << a + b;

	return 0;
}