p, q, r = map(int, input().split())
sm = sum([p, q, r])
a, b, c = [i / sm for i in [p, q, r]]

print(max(a, b, c, 1 - a, 1 - b, 1 - c))