#include <iostream>
int a, b;
using namespace std;

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