/*
TASK: a
LANG: C
*/

#include<stdio.h>
int a,b;

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