Assignment 2.1 [30 points] Write a program that asks the user for an amount of money (entered in cents) and then tells the user how to make change for that amount using only quarters, dimes, nickels, and pennies. Use the strategy used in lesson 2.3 (i.e., you must use the modulus operator), and format your output exactly as in this sample screen output. Note that the pennies must be output first. enter number of cents: 119 pennies: 4 nickels: 1 dimes: 1 quarters: 4 You should be sure not to use any numbers other than 0 and 1 in your code in this program. Instead, you should define named constants at the top of the file.