Answer:
see explaination
Explanation:
quarter = 25
dime = 10
nickel = 5
penny = 1
total_amount = int(input("enter an amount\n"))
if total_amount == 0:
print('No Change')
else:
Q = int (total_amount / quarter)
total_amount = total_amount % quarter
D = int (total_amount / dime)
total_amount = total_amount % dime
N = int (total_amount / nickel)
total_amount = total_amount % nickel
P = int (total_amount / penny)
print("your change will be\n",Q,'quarter\n',D,'dime\n',N,'nickel\n',P,'penny')