"Total cost: A cupcake costs A dollars and B cents. Determine, how many dollars and cents should one pay for N cupcakes. A program gets three numbers: A, B, N. It should print two numbers: total cost in dollars and cents." - Python coding question on February 20, 2022 Get link Facebook X Pinterest Email Other Apps CODING QUESTIONHere is question SOLUTION dollar=int(input())cent=int(input())no=int(input())print((no*dollar)+((no*cent)//100))print((no*cent)%100) Input : 2504Output :100