#include <iostream>

using namespace std;
using tp = long long;

signed main() {
  tp a, b;
  cin >> a >> b;
  printf("%lld", a + b);
  fflush(stdout);
  quick_exit(0);
}
