P, Q, R = list(map(int,input().split())) res = max(max(P+Q, Q+R), R+P)/(P+Q+R) print(res)