lenth = int(input('Length: ')) wid = int(input('Width: ')) hei = int(input('Height: ')) ans = hei * wid * lenth print('Volume is', ans)