From 3daf76704fc47a33ca90dfc4611acbd188564047 Mon Sep 17 00:00:00 2001 From: deepcodespythonmorethenu <72375257+deepcodespythonmorethenu@users.noreply.github.com> Date: Fri, 16 Oct 2020 10:18:28 +0530 Subject: [PATCH] calculator for only addition adds your two numbers --- calculator | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 calculator diff --git a/calculator b/calculator new file mode 100644 index 0000000..aaf45c6 --- /dev/null +++ b/calculator @@ -0,0 +1,4 @@ +x = int(input("first no.--) ") +y = int(input("scond no.--) ") +z = x + y +print(z)