A,B,C = list(map(int,input().split())) s = (A+B+C)/2 S = (s*(s-A)*(s-B)*(s-C))**(1/2) print(2*S/(A+B+C))