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