Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- budget_film = float(input())
- count_statists = int(input())
- clothing_price_1 = float(input())
- decor_price = budget_film * 0.1
- all_clothing_price = count_statists * clothing_price_1
- if count_statists > 150:
- all_clothing_price = all_clothing_price * 0.9
- total_sum = decor_price + all_clothing_price
- diff = abs(budget_film - total_sum)
- if budget_film >= total_sum:
- print('Action!')
- print(f'Wingard starts filming with {diff:.2f} leva left.')
- else:
- print('Not enough money!')
- print(f'Wingard needs {diff:.2f} leva more.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement