They are using the knowledge of computational language in python to write the values of the coins and the total we find that
<h3>Writing code in python </h3>
<em>quarters = int(input())</em>
<em>dimes = int(input())</em>
<em>nickels = int(input())</em>
<em>pennies = int(input())</em>
<em>cents = (quarters*25 + dimes*10 + nickels*5 + pennies)</em>
<em>#convert cents to dollars</em>
<em># 1 dollar = 100 cents</em>
<em># n cents = n/100 dollars</em>
<em>dollars = cents / 100.00 </em>
<em>#Print the amount in dollars upto two decimal places</em>
<em>print("Amount: $"+"{:.2f}".format(dollars))</em>
See more about python at brainly.com/question/18502436
#SPJ1