728x90
반응형

단순 구현 문제이다.

while 1:
    n = float(input())
    if n == 0:
        break
    i = 2
    t = 0
    while t < n:
        t += 1/i
        i += 1
    print(f"{i-2} card(s)")
728x90
반응형

+ Recent posts