Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while True:
- destination = input()
- if destination == 'End':
- break
- budget = float(input())
- total = 0
- while destination != 'End':
- total += float(input())
- if total >= budget:
- print(f'Going to {destination}!')
- break
- ИЛИ:
- while True:
- destination = input()
- if destination == 'End':
- break
- budget = float(input())
- while budget > 0:
- budget -= float(input())
- print(f'Going to {destination}!')
Add Comment
Please, Sign In to add comment