# This program will ask for a name and your budet range and send a message(f"Kia ora{name}!") # Collect input name = input("What is your name? ") print(f"Kia ora {name}") budget = int(input("how much is your budget to spend? ")) #how much food costs smoothie = 6.5 pie = 6 wedges = 6.5 new_budget = 0 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 have enterd an invalid option") # Display output end = input("The program has ended, press enter to exit the program.")