From 7069d139ed6d536a5d770368845614c7bf299cf5 Mon Sep 17 00:00:00 2001 From: anmolch26 Date: Thu, 1 Oct 2020 16:42:02 +0530 Subject: [PATCH] added addition.py --- anmol/addition.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 anmol/addition.py diff --git a/anmol/addition.py b/anmol/addition.py new file mode 100644 index 0000000..a71fec6 --- /dev/null +++ b/anmol/addition.py @@ -0,0 +1,6 @@ +a = int(input("enter first number: ")) +b = int(input("enter second number: ")) + +sum = a + b + +print("sum:", sum) \ No newline at end of file