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