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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

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)