

def add( ):
    x=int(input("Enter your first number"))
    y=int(input("Enter your second number"))
    return(x+y)
    
def subtract(): 
    x=int(input("Enter your first number"))
    y=int(input("Enter your second number"))
    return(x-y)

def multiply(): 
    #please take input from user
    #return multiplication of the two number 
 
def divide(): 
    #please take input from user
    #return division of the two number 


#complete the code  using if else statement for calculator
