Advertisement
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
- volume_lt = volume / 1000
- acc = volume_lt * (17 / 100)
- result = volume_lt - acc
- print(result)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement