#include <cstdio>

using namespace std;

int main()
{
    unsigned long long a,b;
    scanf("%lld%lld",&a,&b);
    printf("%lld",a+b);
}