''' Purpose: determine the worth of a piggy bank Problem statement: Prompt user respectively for four values: a number of quarters, dimes, nickels, and pennies. Then compute and display how much the indicated coins are worth. ''' ### get the coinage of interest reply = input( "Number of quarters, dimes, nickels, and pennies: " ) ### convert input into integers ### compute worth ### print worth