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