a, b, c, d, e, f = gets.split(" ").map{|s| s.to_i} m = -c / (2*a) n = -d / (2*a) r = Math.sqrt((f-e)/a + m**2 + n**2) puts r