a,b,c = map(int,input().split()) from math import sqrt s = (a + b + c) / 2 ans = sqrt(s * (s - a) * (s-b) * (s-c)) ans /= 4 print(ans)