Write code in python to c(example: The factorial of 3 is 1 x 2 x 3 = 6). You will want it to do the following:
- Ask the user for a non-negative number.
- Then call the function to calculate the factorial (hint: this function will call itself to calculate the value.)
- Print out the result of the factorial.