#include<cstdio>

using namespace std;

int A,B;

int main()
{
    scanf("%d%d",&A,&B);
    printf("%d\n",A+B);
    return 0;
}