Files
system-design-primer/Simple program on python
2023-04-23 10:32:16 +05:30

6 lines
153 B
Plaintext

# 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)