From ba04c4371d78862d6876d62147157b28b404e861 Mon Sep 17 00:00:00 2001 From: THERASA2102 <128221621+THERASA2102@users.noreply.github.com> Date: Sun, 23 Apr 2023 10:32:16 +0530 Subject: [PATCH] Create Simple program on python --- Simple program on python | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Simple program on python 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)