From 8c0aab6ee5c9cffc725a72d2014926496bdd2a12 Mon Sep 17 00:00:00 2001 From: Garv Chaplot <54480153+Garv44@users.noreply.github.com> Date: Fri, 8 Oct 2021 18:59:07 +0530 Subject: [PATCH] Create additiom.py --- additiom.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 additiom.py diff --git a/additiom.py b/additiom.py new file mode 100644 index 0000000..ff96a5a --- /dev/null +++ b/additiom.py @@ -0,0 +1,10 @@ +# Python3 program to add two numbers + +num1 = 15 +num2 = 12 + +# Adding two nos +sum = num1 + num2 + +# printing values +print("Sum of {0} and {1} is {2}" .format(num1, num2, sum))