Advertisement
ydpetkov

fish_tank

Jul 9th, 2022
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. length = int(input())
  2. width = int(input())
  3. height = int(input())
  4. percent = float(input())
  5.  
  6. volume = length * width * height
  7. volume_lt = volume / 1000
  8. acc = volume_lt * (17 / 100)
  9. result = volume_lt - acc
  10. print(result)
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement