Advertisement
ydpetkov

basketball_equipment

Jul 9th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. year_tax = int(input())
  2.  
  3. shoes_price = year_tax * 0.6
  4. equipment_price = shoes_price * 0.8
  5. ball_price = equipment_price / 4
  6. acc_price = ball_price / 5
  7.  
  8. result = year_tax + shoes_price + equipment_price + ball_price + acc_price
  9. print(result)
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement