Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- length = int(input())
- width = int(input())
- height = int(input())
- percentage = float(input())
- total = length * width * height * (100 - percentage) / 100000
- print(total)
- Тарикатско решение:)
- print(int(input()) * int(input()) * int(input()) * (100 - float(input())) / 100000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement