Source code for python.calc
def subtract(a,b):
return a - b
def multiply(a,b):
return a * b
def divide(a,b):
return a / b
print(add(1,2))
def subtract(a,b):
return a - b
def multiply(a,b):
return a * b
def divide(a,b):
return a / b
print(add(1,2))