#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' Hello there (name) ') budget = int(input('How much is your budget to spend? ')) #food item verable smoothie = 6.5 pie = 6 wedges = 4.5 food = input("what would you like to purchase? A smoothie, a pie, or wedges? ") if food == 'smoothie' : new_budget = budget - smoothie print(f' {name} you selected smoothie, you have {new_budget} remaning.') else: print('You enterted an invslid option') #display output print('The program has ended')