Write a python program
(1)to take price of an item through input()
(2)to take quantity of an item through input()
(3)calculate total price as price*quantity
(4)calculate 5% as SGST as well as CGST both of the total price
(5)print GST and total cost as totalprice + GST
Answers
Answered by
3
Answer:
us=int(input("what is the price of the apple.))
u2=int(input("How many apples do you want?)
price=us+u2
print(price)
I do not know what steps 4 and 5 mean
Explanation:
Similar questions