p, q, r = map(int, input().split()) x = p / (p + q + r) y = q / (p + q + r) z = r / (p + q + r) print(max(x, y, z, (1-x), (1-y), (1-z)))