easy

n = list(map(int,input().split()))
def fk(a,b,c):
    return max((a+b,b,c))/(max((a,b+c,c))+max((a,b,c+b)))
print(fk(n[0],n[1],n[2]))