mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-12-14 17:08:56 +03:00
Create Simple program on python
This commit is contained in:
5
Simple program on python
Normal file
5
Simple program on python
Normal 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)
|
||||
Reference in New Issue
Block a user