Wap to input any number and print it's cube
Answers
Answered by
2
print((n := int(input("num: ")) ** 3))
Answered by
0
Answer:
UsingPython3
∣
print((n := int(input("num: ")) ** 3))
Explanation:
pls follow up
Similar questions