Advertisement
veronikaaa86

08. Basketball Equipment

Jul 2nd, 2023
866
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. year_tax = int(input())
  2.  
  3. shoes_price = year_tax - (year_tax * 0.4)
  4. suit_price = shoes_price - (shoes_price * 0.2)
  5. ball_price = suit_price / 4
  6. acc_price = ball_price / 5
  7.  
  8. total_price = shoes_price + suit_price + ball_price + acc_price + year_tax
  9.  
  10. print(total_price)
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement