n, m = map(int, raw_input().split()) if n > m: print -1 elif n == 2 and m == 1: print 2 elif n <= m: print 1 else: print -1