def add(a,b):
    return a + b 

def subtract(a,b):
    return a - b

def multipluy(a,b):
    return a * b

def divide(a,b):
    return a / b 

print("1. Addition (+)")
print("2. Subraction (-)")
prin

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: