l = int(input("Length: ")) w = int(input("Width: ")) h = int(input("Height: ")) result = l * w * h print(result)