Write a program to find the minimum no of notes required for the amount M.
Available note denominations are 500:50:10:1
The output should be 500: 3 50: 0 10: 4 1:3
The first integer is a single integer M.
M = int(input())
for note in (500, 50, 10, 1):
print(f'{note}: {M//note}')
M %= note
Comments
Leave a comment