p,q,r=map(int,input().split()) a=p/(p+q+r) b=q/(p+q+r) c=r/(p+q+r) print(max(max(a,b,c),1-min(a,b,c)))