# include <iostream>
using namespace std;

long a,b;

int main()
{
    cin >> a >> b;
    cout << a + b;
}