#include <bits/stdc++.h>

using namespace std;

ifstream cinn ("nr.in");
ofstream coutt ("nr.out");

int main()
{
    ios :: sync_with_stdio(false);

    long long a,b;

    cin >> a >> b;

    cout << a + b;

    return 0;
}