def max3(a,b,c):
    return max((a+b,b,c))/(max((a,b+c,c))+max((a,b,c+b)))

a,b,c = map(int,input().split())
m = max3(a, b, c)
print('%2f'%m)