n, m=gets.split.map(&:to_i) if n<=m puts 1 else if n==2*m puts 2 else puts (-1) end end