1] Program to print cube of a given number using a method
Answers
Answered by
0
Answer:
n= int(input())
print(n**3)
Explanation:
first take the input of number n
and use **operator to get the cube of number n
print n
Similar questions