Advertisement
Paparak

Untitled

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