Calculating the factorial

Report a typo

Import the factorial function from the math module and print the value of the factorial of x.

Sample Input 1:

5

Sample Output 1:

120
Write a program in Python 3
# don't modify this code or variable `x` may not be available
x = int(input())

# use factorial() here
___

Create a free account to access the full topic