Teo_Yanchev

Traveling_while

Jul 13th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. command = input()
  2.  
  3. while command != "End":
  4. destination = command
  5. min_budget = float(input())
  6.  
  7. saved_money = 0
  8. while saved_money < min_budget:
  9. money = float(input())
  10. saved_money += money
  11. print(f"Going to {destination}!")
  12.  
  13. command = input()
Advertisement
Add Comment
Please, Sign In to add comment