// No.353 ヘイトプラス // https://yukicoder.me/problems/no/353 // #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); unsigned int A, B; cin >> A >> B; B *= -1; cout << (A - B) << endl; }