n = gets.to_i a = (0...n).map { gets.split.map(&:to_i) } puts a.sort_by { |x| -Rational(*x) } .map { |x| x.join(' ') }