Answer:
see explaination
Step-by-step explanation:
quarter = 25
dime = 10
nickel = 5
penny = 1
total_amount = int(input("enter an amount\\"))
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\\",Q,'quarter\\',D,'dime\\',N,'nickel\\',P,'penny')