pqr = [*map(int, input().split())] tmp = max(pqr) / sum(pqr) ans = max(tmp, 1 - tmp) print(ans)