# The input() function displays a prompt and waits for the user to type something.
# Whatever the user types is stored in the 'user_name' variable.
order_item = input("Welcome to our cafe! What would you like to order? ")
# Now we can use that variable to confirm the order.
print("Great choice! So you'd like to order", order_item, ". Coming right up!")