Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- length = int(input())
- width = int(input())
- height = int(input())
- percent_filled_volume = float(input())
- volume = length * width * height
- total_litres = volume * 0.001
- filled = total_litres - (total_litres * percent_filled_volume * 0.01)
- print(filled)
Advertisement
Add Comment
Please, Sign In to add comment