Create Simple program on python

This commit is contained in:
THERASA2102
2023-04-23 10:32:16 +05:30
committed by GitHub
parent a07e261677
commit ba04c4371d

5
Simple program on python Normal file
View File

@@ -0,0 +1,5 @@
# WAP to accept a number and print its cube.
num=int(input("Enter the number"))
cube=num*num*num
print("Enter the Number:",num)
print("It's cube:",cube)