From e4d44bae21a4e222086a4593f5f641e44185522d Mon Sep 17 00:00:00 2001 From: Harshit-coder <32755346+Harshit-coder@users.noreply.github.com> Date: Mon, 30 Oct 2017 20:57:29 +0530 Subject: [PATCH] mathematical operations in python --- mathematical operations in python | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mathematical operations in python diff --git a/mathematical operations in python b/mathematical operations in python new file mode 100644 index 0000000..3a9395f --- /dev/null +++ b/mathematical operations in python @@ -0,0 +1,6 @@ +a = int(raw_input()) +b = int(raw_input()) +a+b # prints sum +a-b # prints difference +a*b # prints multiplication +a**b # results in a^b