N, M = gets.split.map(&:to_i) if N <= M puts 1 exit end if N.even? && N <= 2 * M puts 2 exit end puts -1