import math a, b, c = map(int, input().split()) S = math.sqrt((a + b + c)*(b + c - a)*(c + a - b)*(a + b - c))/16 print(S)