from math import sqrt a,b,c = map(float,input().split()) print(sqrt((a + b + c) * (a + b - c) * (b + c - a) * (c + a - b))/16)