Pagini recente » Cod sursa (job #945115) | Cod sursa (job #1533033) | Cod sursa (job #587171) | Cod sursa (job #1835296) | Cod sursa (job #3317816)
#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;
}