#include void solve() { int x, y; std::cin >> x >> y; int ans; if (x == y) { ans = 0; } else if (y == 0) { ans = 1; } else if (x == 0) { ans = 2; } else { ans = -1; } std::cout << ans << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }