P, Q, R = map(int, input().split()) mi = min(P, Q, R) ans = 1 - mi/(P+Q+R) print(ans)