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