Can anyone determine the problem..!?
print("Thank you for choosing Python Pizza Deliveries!") size = input() # What size pizza do you want? S, M, or L add_pepperoni = input() # Do you want pepperoni? Y or N extra_cheese = input() # Do you want extra cheese? Y or N # 🚨 Don't change the code above 👆 # Write your code below this line 👇 S = 15 M = 20 L = 25 Y_P = 3 Y_CH = 1 N_P = 0 N_CH = 0 Total1_s = S + Y_P + Y_CH Total2_s = S + Y_P Total3_s = S + Y_CH Total4_s = S if size == "S" : if add_pepperoni == "Y": if extra_cheese == "Y": print(f"Your final bill is: ${Total1_s}.") elif size == "S" : if add_pepperoni == "Y": if extra_cheese == "N": print(f"Your final bill is: ${Total2_s}.") elif size == "S" : if add_pepperoni == "N": if extra_cheese == "Y": print(f"Your final bill is: ${Total3_s}.") elif size == "S" : if add_pepperoni == "N": if extra_cheese == "N": print(f"Your final bill is: ${Total4_s}.") else: print("sorry, you can`t odder")