Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- length = int(input())
- width = int(input())
- height = int(input())
- percent = float(input())
- volume = length * width * height
- total_lt = volume / 1000
- percent_lt = total_lt * (percent / 100)
- result = total_lt - percent_lt
- print(result)
Advertisement
Add Comment
Please, Sign In to add comment