def heron(a, b, c): s = (a + b + c) / 2 return (s * (s - a) * (s - b) * (s - c)) ** 0.5 print(heron(*map(int, input().split())) / 4)