Advertisement
Paparak

Untitled

Dec 10th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. saved_money = 0
  2. travel_expences = 0
  3.  
  4.  
  5. while True:
  6.     destination = input()
  7.  
  8.     if destination == "End":
  9.         break
  10.     expences = int(input())
  11.  
  12.     while travel_expences <= expences:
  13.         saved_money = int(input())
  14.         travel_expences += saved_money
  15.  
  16.     if travel_expences >= expences:
  17.         print(f"Going to {destination}!")
  18.         travel_expences = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement