Returns the factorial of a given integer.
int Factorial(int n) => n == 0 || n == 1 ? 1 : n * Factorial(n - 1);