如何在 SPOJ 问题硬币中输入 Python?

How to take input in Python in SPOJ problem COINS?

任何人都可以帮助我如何接受下面问题中描述的输入(link 已提供)。我只想知道Python 3.7语言中输入部分的实现。请不要分享您对主要问题的回答或逻辑。

https://www.spoj.com/problems/COINS/

while True:
    try:
        value = int(input()) # Bytelandian coins can only have integer values.
    except:
        break
    # your code to find and print the dollars you can make for a coin worth 'value' goes here
    ...