# This program will ask for a name and the age. it will check the age range and #display a message #collect input name = input("What is your name? ") print(f"Kia ora {name}") budget = int(input("how much is your budget to spend")) # food item variables smothie = 6.5 pie = 6 wedges = 4.5 food = input("what do you wabt to buy? a smothie pie or wedges?") if food == "smothie": new_budget = budger - smothie print(f'{name}you selected smothie, you have {new_budget} remerbing') else: print(" you are under", 13, "years old") #display output print("the program has ended")