#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
#include <fstream>
#include <climits>
#include <filesystem>
#include <numeric>
#include <set>
using namespace std;
//CONSTS
#define int long long
static const int N = 10000;
// FUNCTIONS
#define infor(a, n) \
for (int i = 0; i < n; i++) { \
cin >> a[i]; \
}
int bin_search(const vector<int>& a, int x) {
auto it = lower_bound(a.begin(), a.end(), x);
if (it == a.end() || *it != x)
return -1;
return it - a.begin();
}
void solution() {
int n, n1;
cin >> n >> n1;
cout << n+n1 << endl;
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(0);
// int t;
// cin >> t;
// while (t--) {
solution();
// }
return 0;
}