Create a function that takes an integer and returns the factorial of that integer. That is, the integer multiplied by all positive lower integers.
factorial(3) ➞ 6
factorial(5) ➞ 120
factorial(12) ➞ 479001600Assume all inputs are greater than or equal to 0.