Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

build a program that allows you to enter the number of cakes you want to make and the total cost will be displayed

0 votes
asked Aug 27, 2018 by hzzue zhn (120 points)

1 Answer

0 votes
answered Aug 27, 2018 by Abhisindh Chatterjee (140 points)
a=input("how many cakes do you need=")

 b =300

total=int(a)*int(b)

 q=str(total)

print(q+"rs")

#you can change b and rs according to your needs
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...