ABC = list(map(int,input().split())) a,b,c = ABC sabc = sum(ABC) s = sabc / 2 S = (s * (s - a) * (s - b) * (s - c)) ** 0.5 t = S * 2 / sabc print(t)