Ad
def minus(a,b):
    return a-b

add

def add(a,b):
    return 1
Code
Diff
  • def add(a,b):
        sum=a+b
        return sum
    • def add(a,b):
    • return a+b
    • sum=a+b
    • return sum