# Restaurant Bill Calculator (Singapore)
# Calculates total cost after 10% service charge and 9% GST.

# Step 1: Get the item and price
item = input("Enter the menu item: ")
price = float(input("Enter the price of the item ($): "))

# Step 2: Calculate charges
service_charge = price * 0.10   # 10%
subtotal = price + service_charge
# TO COMPLETE: gst is 9% of the price and service charge added together
# TO COMPLETE: the total owing is the original price, service charge and gst added together

# Step 3: Display the results
print("\n--- Restaurant Bill ---")
print(f"Item: {item}")
print(f"Base price: ${price:.2f}")
print(f"Service charge (10%): ${service_charge:.2f}")
# TO COMPLETE: print out the gst and total price

# 1. Complete the missing pieces of code
# 2. Increase the GST to 11%