#this program will ask for a name and the bugget. it will check the bugget range #display and 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 smoothie, you have {new_budget} remaining.") else: print("you entred a invalid option") #dislay output print("the program has ended")