n,m = map(int,input().split()) if n <= m: print(1) elif n&1==0 and n//2 <= m: print(2) else: print(-1)