#include using namespace std; int main() { int inp1, inp2; scanf("%d %d", &inp1, &inp2); cout << (inp1 - (-inp2)) << endl; return 0; }