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