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