August 13, 2017 Matthew Maennche Learn To Code, Python Python LANGUAGE: PYTHON CHALLENGE: Write the definition of a function add, that receives two int parameters and returns their sum. SOLUTION: def add(int1,int2): return int1+int2