Advertisement
ydpetkov

toys_shop

Jul 13th, 2022
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.63 KB | None | 0 0
  1. trip_price = float(input())
  2. puzzle_count = int(input())
  3. dolls_count = int(input())
  4. teddy_count = int(input())
  5. minions_count = int(input())
  6. trucks_count = int(input())
  7.  
  8. total_sum = (puzzle_count * 2.60) + (dolls_count * 3) + (teddy_count * 4.10) + (minions_count * 8.20) + (trucks_count * 2)
  9. total_count = puzzle_count + dolls_count + teddy_count + minions_count + trucks_count
  10. if total_count >= 50:
  11.     total_sum = total_sum * 0.75
  12. total_sum = total_sum * 0.90
  13. diff = abs(total_sum - trip_price)
  14. if trip_price <= total_sum:
  15.     print(f'Yes! {diff:.2f} lv left.')
  16. else:
  17.     print(f'Not enough money! {diff:.2f} lv needed.')
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement