prompt = "\nPlease enter a series of pizza toppings: "

while True:
  pizza = input(prompt)

  if pizza == 'quit':
    break
  else:
    print(f"{pizza.title()} will be added to your pizza!")