Cube Finder Python
a = int(input("Enter the number to find Cube: "))
print("Cube of your number is: ",a**3)
Coding boy Hasya
a = int(input("Enter the number to find Cube: "))
print("Cube of your number is: ",a**3)