coding practice-9

 write a program to print factorial of N.

        

        import math

        print(math.factorial(int(input())))

Comments