6
720
def factorial(n): if n <= 1: return 1 return n * factorial(n - 1) print(factorial(int(input())))