print "This program will compute the smallest amount of coins needed for the amount inputted"

a = input ("Enter the amount of money: ")

b = 25

c = 10

d = 5

e = 1

qu = a/b

di = a%b/c

ni = ((a%b)%c)/d

pe = (((a%b)%c)%d)

print str(qu), 'quarter(s),' , str(di), ' dime(s),' , str(ni), ' nickel(s), and', str(pe), 'pennie(s)'
