You are on page 1of 1

# Program Name: Cube

# Author Name: John Patrick Creus


# Program Details: Calculate the volume of a Cube
# Date Created: October 23, 2022
Side = int(input("Enter the value of side: "))
Volume = (Side*Side*Side)
print("The volume of the Cube is",Volume)

You might also like