Pagini recente » Cod sursa (job #2374912) | Cod sursa (job #745368) | Cod sursa (job #334333) | Cod sursa (job #950180) | Cod sursa (job #2917596)
#include <bits/stdc++.h>
#define pb push_back
#define em emplace
#define emb emplace_back
#define all(x) x.begin() + 1, x.end()
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using pii = pair <int, int>;
using pll = pair <ll, ll>;
void re() {
}
template <typename fir, typename ...sec> void re(fir &x, sec&... y);
template <typename fir, typename ...sec> void re(vector <fir>& x, sec&... y);
template <typename fir, typename ...sec> void re(fir &x, sec&... y) {
cin >> x;
re(y...);
}
template <typename fir, typename ...sec> void re(vector <fir>& x, sec&... y) {
for(int i = 1;i < x.size();i++)
re(x[i]);
re(y...);
}
void wr() {
}
template <typename fir, typename ...sec> void wr(fir x, sec... y) {
cout << x;
wr(y...);
}
inline void Open(const string Name) {
#ifndef ONLINE_JUDGE
(void)!freopen((Name + ".in").c_str(), "r", stdin);
(void)!freopen((Name + ".out").c_str(), "w", stdout);
#endif
}
void solve() {
pair <int, int> a[] = {{1, 1}, {1, 1}};
for(auto& [x, y] : a) {
cin >> x;
}
wr(a[0].first + a[1].first);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
Open("adunare");
int t = 1;
for(;t;t--) {
solve();
}
return 0;
}