1. Make change for some amount 2. get some amount of money print out the coins that make up that amount 3. how many quarters in the amount? how many dimes in what remains? how many nickels in what remains the rest is pennies 4. let's say you have amount amount is 67 number of quarters <- 67 / 25 = 2 new amount <- 67 % 25 = 17 number of dimes <- 17 / 10 = 1 newer amount <- 17 % 10 = 7 number of nickels <- 7 / 5 = 1 rest is pennies <- 17 % 5 = 2 number of quarters <- amount / 25 new amount <- amount % 25 number of dimes <- new amount / 10 newer amount <- new amount % 10 number of nickels <- new amount / 5 number of pennies <- new amount % 5 5. Python num_quarters = amount // 25 new_amount = amount % 25 num_dimes = new_amount // 10 newer_amount = new_amount % 10 num_nickels = newer_amount // 5 num_pennies = newer_amount % 5 n3 legal 3n not legal amount = int(input("what's your change? ")) num_quarters = amount // 25 new_amount = amount % 25 num_dimes = new_amount // 10 newer_amount = new_amount % 10 num_nickels = newer_amount // 5 num_pennies = newer_amount % 5 print("The change is", num_quarters, "quarters,", num_dimes)