From 97c4eac96f3b4c5c060702b0a7d4cd9bf305b78e Mon Sep 17 00:00:00 2001 From: Abhishek234 <33246891+Abhishek234@users.noreply.github.com> Date: Tue, 31 Oct 2017 13:20:12 +0530 Subject: [PATCH] mathematical operators in python --- mathematical operators in python | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mathematical operators in python diff --git a/mathematical operators in python b/mathematical operators in python new file mode 100644 index 0000000..cd27289 --- /dev/null +++ b/mathematical operators 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 # prints a^b