diff --git a/Simple program on python b/Simple program on python new file mode 100644 index 00000000..696165cb --- /dev/null +++ b/Simple program on python @@ -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)