Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- command = input()
- while command != "End":
- destination = command
- min_budget = float(input())
- saved_money = 0
- while saved_money < min_budget:
- money = float(input())
- saved_money += money
- print(f"Going to {destination}!")
- command = input()
Advertisement
Add Comment
Please, Sign In to add comment