Cod sursa(job #3313553)

Utilizator MihneaStoicaMihnea Teodor Stoica MihneaStoica Data 5 octombrie 2025 11:09:22
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.6 kb
#include <bits/stdc++.h>
using namespace std;

/**
 * Problem: A+B
 * URL: https://infoarena.ro/problema/adunare
 * TL: 25 ms
 * ML: 64 MB
 */
#define MULTITEST 0
#define int long long
inline void tc() {
    int a, b;
    cin >> a >> b;
    cout << a + b << '\n';
}

#define FILEIO 1
#define FILE "adunare"
signed main() {
#if FILEIO && !defined(LOCAL)
    freopen(FILE ".in", "r", stdin);
    freopen(FILE ".out", "w", stdout);
#endif
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
#if MULTITEST == 1
    int tt;
    cin >> tt;
    while (tt--) {
        tc();
    }
#else
    tc();
#endif
    return 0;
}