Given a Number Find its Factorial
Given a number, you have to find its factorial.
For Example:
If the input is "4" the factorial would be "4 * 3 * 2 * 1" which is, "24"
If the input is "3" the factorial would be "3 * 2 * 1" which is, "6"
Python Implementation: