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