import math a, b, c = map(int, input().split()) s = (a + b + c) / 2.0 area = math.sqrt(s * (s - a) * (s - b) * (s - c)) expected = area / 4.0 print("{0:.10f}".format(expected))