This is a very simple calculator that takes two numbers and either add, subtract, multiply or divide them.

Function in the Package:
add_numbers
subtract_numbers
multiply_numbers
divide_numbers

Running the Package:
Example:
import srinivascalculator

add = srinivascalculator.add_numbers(3,4)
print(add)
      