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 && ans < 50 p ans end } }