a,b,c = map(int,input().split()) x = (a+b+c)/2 S = (x*(x-a)*(x-b)*(x-c))**0.5 print(S/4)