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