본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32866번 코인의 신 건모

by 현장 2024. 12. 6.

-Code

n = int(input())
x = int(input())
res = n / (n - n * (x / 100)) - 1
print(round(res * 100, 7))