barabar4e

05. Travelling

Oct 18th, 2022
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. destination = input()
  2. budget = input()
  3.  
  4. saved_money = 0
  5.  
  6. while destination != 'End':
  7.     money = float(input())
  8.     saved_money += money
  9.     budget_float = float(budget)
  10.     if saved_money >= budget_float:
  11.         print(f'Going to {destination}!')
  12.         saved_money = 0
  13.         destination = input()
  14.         budget = input()
  15.  
Advertisement
Add Comment
Please, Sign In to add comment