a,b,c = map(int,input().split())
ans = max(a+b,b,c)/(max(a,b+c,c)+max(a,b,b+c))
print(f"{ans:.2f}")