p, q = map(float, input().split()) ans = p*q/(p*q+(100-p)*(100-q)) ans *= 100 print(ans)