a,b,c=map(float,input().split()) p=(1/2)*(a+b+c) area=(p*(p-a)*(p-b)*(p-c))**0.5 area_rounded=round(area,2) print(area_rounded)