Sichanov

rer

Jan 13th, 2021
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. length = int(input())
  2. width = int(input())
  3. height = int(input())
  4. percent_filled_volume = float(input())
  5. volume = length * width * height
  6. total_litres = volume * 0.001
  7. filled = total_litres - (total_litres * percent_filled_volume * 0.01)
  8. print(filled)
  9.  
Advertisement
Add Comment
Please, Sign In to add comment