(n, m) = gets.chomp.split(' ').map(&:to_i) if n > m puts '-1' exit end if n <= m puts '1' exit end