Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tuition_fee = float(input())
- shoes_price = tuition_fee * 0.6
- team_clothes = shoes_price * 0.8
- ball = team_clothes / 4
- accessories = ball / 5
- total_sum = tuition_fee + shoes_price + team_clothes + ball + accessories
- print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement