p, q, r = map(int, input().split()) ans = max(p, q, r) ans = max(ans, p + q + r - ans) print(ans / (p + q + r))