Advertisement
ydpetkov

godzilla_vs_cong

Jul 13th, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. budget_film = float(input())
  2. count_statists = int(input())
  3. clothing_price_1 = float(input())
  4.  
  5. decor_price = budget_film * 0.1
  6. all_clothing_price = count_statists * clothing_price_1
  7.  
  8. if count_statists > 150:
  9. all_clothing_price = all_clothing_price * 0.9
  10.  
  11. total_sum = decor_price + all_clothing_price
  12. diff = abs(budget_film - total_sum)
  13.  
  14. if budget_film >= total_sum:
  15. print('Action!')
  16. print(f'Wingard starts filming with {diff:.2f} leva left.')
  17. else:
  18. print('Not enough money!')
  19. print(f'Wingard needs {diff:.2f} leva more.')
  20.  
  21.  
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement