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

LANGUAGE:  PYTHON

CHALLENGE:

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

SOLUTION:


def add(int1,int2):
return int1+int2