Write the definition of a function add which recieves two parameters containing integer values and returns their sum

Write the definition of a function add which recieves two parameters containing integer values and returns their sum


def add(int1,int2):

return int1+int2


Learn More :