l = int(input("enter a length ")) w = int(input("enter a width ")) h = int(input("enter a height ")) v = (l * w * h) print("volume is", v)