11/15/202011/18/2020 Return the Next Number from the Integer Passed Challenge 001 Create a function that takes a number as an argument, increments the number by +1 and returns the result. Examples addition(0) ➞ 1 addition(9) ➞ 10 addition(-3) ➞ -2 Solution: def addition(num): return num + 1