Cod sursa(job #3303126)

Utilizator MGrowMGrow MGrow MGrow Data 14 iulie 2025 01:13:10
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.3 kb
#include <bits/stdc++.h>

using namespace std;

int main() {
#ifdef INFOARENA
  freopen ("adunare.in", "r", stdin);
  freopen ("adunare.out", "w", stdout);
#else
  freopen ("input.txt", "r", stdin);
#endif // INFOARENA

  int a, b;
  cin >> a >> b;
  cout << a + b << "\n";


  return 0;
}