import math A, B, C = map(int, input().split()) s = (A + B + C) / 2 print("{:.10f}".format(math.sqrt(s * (s - A) * (s - B) * (s - C)) / s))