len = int(input("Length")) wid = int(input("Width")) hei = int(input("Height")) vol = len * wid * hei print("Volume is", vol)