a,b,c = map(int,input().split()) def heron(x,y,z): s = (x+y+z)/2 S = (s*(s-x)*(s-y)*(s-z))**(1/2) return S print(heron(a, b, c)/4)