【问题描述】输出找零钱的结果
【输入形式】
【输出形式】
【样例输入】152
【样例输出】
100,1
50,1
20,0
10,0
1,2
【样例说明】
【评分标准】
amount = int(input())
# 计算各面额的张数
notes = [100, 50, 20, 10, 1]
for note in notes:
count = amount // note
amount %= note
print(f"{note},{count}")