11/13/202011/18/2020 Return the Sum of Two Numbers Challenge 000 Create a function that takes two numbers as arguments and return their sum. Examples addition(3, 2) ➞ 5 addition(-3, -6) ➞ -9 addition(7, 3) ➞ 10 Solution: def sum_of_two(a, b): return a + b