Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- budget = float(input())
- season = input()
- camp_price = 0
- hotel_price = 0
- if budget <= 100:
- print('Somewhere in Bulgaria')
- if season == 'summer':
- camp_price = budget - budget * 0.7
- print(f'Camp - {camp_price:.2f}')
- else:
- hotel_price = budget - budget * 0.3
- print(f'Hotel - {hotel_price:.2f}')
- elif budget <= 1000:
- print('Somewhere in Balkans')
- if season == 'summer':
- camp_price = budget - budget * 0.6
- print(f'Camp - {camp_price:.2f}')
- else:
- hotel_price = budget - budget * 0.2
- print(f'Hotel - {hotel_price:.2f}')
- elif budget > 1000:
- print('Somewhere in Europe')
- hotel_price = budget - budget * 0.1
- print(f'Hotel - {hotel_price:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment