l = int(input('Enter Length: ')) w = int(input('Enter Width: ')) h = int(input('Enter Height: ')) print('Volume is', l * w * h)