O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
item=input("Enter item name :") sp_cost=float(input("How much is selling price of item")) gst_rate=float(input("What is GST rate %")) cgst=sp_cost*((gst_rate/2)/100) sgst=cgst amt=sp_cost+cgst*sgst print("CGST (@",(gst_rate/2),"%) :",(cgst)) print("SGST(@",(gst_rate/2),"%) :",(sgst)) print("Amount payable: ",(amt))
▶ Run Code
🖥 Output: