# FactorialEasy.py
#
# Print the factorial of a number, the easy way.
# A factorial is a number times that number minus one,
# and so on.
#
# Example: the factorial of 4 is 4 * 3 * 2 * 1, or 24.
#
import math
number = input("What number would you like ot know the factorial of? ")
number = int(number)
factorial = math.factorial(number)
print("The factorial of", number, "is", factorial)