Cod sursa(job #3317816)

Utilizator MihneaStoicaMihnea Teodor Stoica MihneaStoica Data 25 octombrie 2025 14:01:18
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.74 kb
#include <bits/stdc++.h>
using namespace std;

/**
 * A+B
 *
 * URL: https://infoarena.ro/problema/adunare
 * TL: 25 ms
 * ML: 64 ms
 *
 * Good Luck!
*/

using ll = long long;
using ld = long double;
using uint = unsigned int;
using ull = unsigned long long;

// #define int ll
// #define uint ull

void tc() {
  int a, b; cin >> a >> b;
  cout << a + b << '\n';
}

#define MULTIPLE_TESTCASES 0

signed main() {
#if "false" == "false"
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
#endif
#ifndef LOCAL
  #if "file" == "file"
  freopen("adunare.in", "r", stdin);
  #endif
  #if "file" == "file"
  freopen("adunare.out", "w", stdout);
  #endif
#endif
#if MULTIPLE_TESTCASES
  int tt; cin >> tt;
  while (tt --) tc();
#else
  tc();
#endif
  return 0;
}