Advertisement
Spocoman

09. Fish Tank

Dec 1st, 2021
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. length = int(input())
  2. width = int(input())
  3. height = int(input())
  4. percentage = float(input())
  5.  
  6. total = length * width * height * (100 - percentage) / 100000
  7. print(total)
  8.  
  9.  
  10. Тарикатско решение:)
  11.  
  12. print(int(input()) * int(input()) * int(input()) * (100 - float(input())) / 100000)
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement