Pagini recente » Cod sursa (job #3298654) | Cod sursa (job #2191429) | Cod sursa (job #1996270) | Cod sursa (job #1728929) | Cod sursa (job #3313553)
#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;
}