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