Advertisement
Spocoman

Basketball Equipment

Jan 7th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. fee = float(input())
  2. shoes = fee * 0.6
  3. dress = shoes * 0.8
  4. ball = dress / 4
  5. accessories = ball / 5
  6. print(f'{(fee + shoes + dress + ball + accessories):.2f}')
  7.  
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement