#include <iostream>
#include <fstream>
#include <stack>
#include <cstring>
#include <string>
#include <queue>
#include <vector>
#include <cctype>
#include <algorithm>
#include <iomanip>

using namespace std;

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