Advertisement
Spocoman

08. Basketball Equipment

Dec 1st, 2021
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. tuition_fee = float(input())
  2. shoes_price = tuition_fee * 0.6
  3. team_clothes = shoes_price * 0.8
  4. ball = team_clothes / 4
  5. accessories = ball / 5
  6.  
  7. total_sum = tuition_fee + shoes_price + team_clothes + ball + accessories
  8. print(total_sum)
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement