From c089e14f6f958a5a28b9f5ccca4e685a8f376a70 Mon Sep 17 00:00:00 2001 From: Tanuj Dhiman <56601466+tanujdhiman@users.noreply.github.com> Date: Fri, 16 Jul 2021 21:50:47 +0530 Subject: [PATCH] Update hello.py A very first program in python --- python/hello.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/hello.py b/python/hello.py index 76a71da..9fdb280 100644 --- a/python/hello.py +++ b/python/hello.py @@ -1,2 +1,4 @@ -print("hello") -print(3+4) +print("Hello and Welcome all !!") +a = 10 +b = 20 +print("Sum is : ", a+b)