Advertisement
veronikaaa86

08. Basketball Equipment

May 8th, 2022
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. year_tax = int(input())
  2.  
  3. shoes = year_tax * 0.60
  4. suit = shoes * 0.80
  5. ball = suit / 4
  6. acc = ball / 5
  7.  
  8. total_sum = year_tax + shoes + suit + ball + acc
  9.  
  10. print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement