Advertisement
exDotaPro

9_march_2019_1_basketball_equipment

Jan 10th, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. year_tax = int(input())
  2.  
  3. sneakers_price = year_tax * 0.6
  4. suit_price = sneakers_price * 0.8
  5. ball_price = suit_price * 0.25
  6. accessories_price = ball_price * 0.2
  7.  
  8. total_price = year_tax + sneakers_price + suit_price + ball_price + accessories_price
  9.  
  10. print(f'{total_price:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement