a, b, c = map(int, input().split()) t = (a + b + c) / 2 s = (t * (t - a) * (t - b) * (t - c)) ** 0.5 print(s / t)