Computer Science, asked by help2sakshi, 2 months ago

Write program to find cube of any number.

Answers

Answered by midhunk899
0

Explanation:

which progaming language?

Answered by aaditya9568
0

Answer:

Python:

a= int(input("Enter the Number: "))

print("Cube of the number is", a*a*a)

Similar questions