#include <stdio.h>
#define ll long long
using namespace std;
ll a, b;
int main()
{
scanf("%lld%lld", &a, &b);
printf("%lld", a+b);
}