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