#This program will ask for a name and the budget. It will check the budget 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 smoothie = 6.5 Pie = 6 Wedges = 4.5 food = input("what do you want to buy? A smoothie, pie, or wedges? ") if food == "smoothie": new_budget = budget - smoothie print(f"(name) You selected smoothie, you have (new budget) remaining.") else: print ("you entered an invalid option") #Display output print("The program has ended")