a,b,c=map(int,input().split()) s = (a+b+c)*0.5 ans = (s*(s-a)*(s-b)*(s-c))**0.5 print(ans*0.25)