gets.to_i.times{ gets 6.times{ x,y = gets.split.map(&:to_f) ans = Math.atan(y / x) * 180 / Math::PI if ans >= -0.01 && ans <= 50.01 p ans end } }