P, Q = map(float, input().split()) R = P * Q / (P * Q + (100 - P) * (100 - Q)) * 100 print(R)