Today, we're learning and practicing an algorithmic concept called Recursion.
Write a factorial function that takes a positive integer, N as a parameter and prints the result of N! (N factorial).
A single integer, N (the argument to pass to factorial).
Your submission must contain a recursive function named factorial.
Print a single integer denoting .
3
6