#include <stdio.h>

int main() {
int a=5,b=7;
scanf("%d%d",&a,&b);
c=a+b;
printf("%d",c);

}