From 06be2982edddaeb1f32bc74938284b499486dc75 Mon Sep 17 00:00:00 2001 From: 17ucs008 <32043143+17ucs008@users.noreply.github.com> Date: Mon, 30 Oct 2017 21:34:23 +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..e4b811b --- /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 # prints a^b