A, B = map(int, input().split()) if B == 0: print(1) elif B != 0 and A == -1: print(2) else: print(-1)