lenght = int(input("lenght: ")) width = int(input("width: ")) height = int(input("height: ")) print("volume is", lenght * width * height) #finished