Sichanov

travelling

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