#include using namespace std; int main() { int a, b; cin >> a >> b; a *= -1; a -= b; a *= -1; cout << a << endl; return 0; }