A, B, C = gets.split.map(&:to_i) s = Rational(A + B + C, 2) S = Math.sqrt(s * (s - A) * (s - B) * (s - C)) puts "%.8f" % Rational(S, 4)