#include <stdio.h>
#include <stdlib.h>
int main()
{
    long a,b,s=0;
    scanf("%d%d",&a,&b);
    s=a+b;
    printf("%d",s);
    return 0;
}