#include <bits/stdc++.h>
using namespace std;
int main ()
{
    long long int a,b,x;
    cin>>a>>b;
    x=a+b;
    cout<<x;
}