n, k = map(int, input().split()) if k > n: print(-1) else: print(k - 1)