def area(a, b, c): s = (a+b+c)/2 return (s*(s-a)*(s-b)*(s-c))**0.5 A, B, C = map(int, input().split()) print(area(A, B, C)/(A+B+C)*2)