Advertisement
skipter

Birthday-python

Oct 14th, 2018
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. length = int(input())
  2. width = int(input())
  3. height = int(input())
  4. procent = float(input())
  5.  
  6. volume = (height * width * length) * 0.001
  7. procent = procent * 0.01
  8.  
  9. result = volume * (1 - procent)
  10. print(f"{result:.3f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement