import math a,b,c = map(int,input().split()) s = (a+b+c)/2 S = math.sqrt(s*(s-a)*(s-b)*(s-c)) x = 0.25 y = 0.25 z = 0.25 ans = S*(1 - (x+y+z)) print(ans)