← Back to List

25985번: Fastestest Function ↗

Solutions

Python 3
115 B | 115 chars
a, b = map(int, input().split())

org_b = (100 * (100 - a) / (100 - b)) * b / 100
c =  a / org_b
print(f"{c:.8f}")