a, b, c = gets.split.map(&:to_f) s = (a + b + c) / 2 S = Math.sqrt(s * (s - a) * (s - b) * (s - c)) puts S / 4