#include <stdio.h>

int main () {
  int a, b;

  fscanf( stdin, "%d%d", &a, &b );

  int s = a + b;

  fprintf( stdout, "%d\n", s );

  return 0;
}