n = int(input()) mod = 10 ** 12 result = 1 for i in range(1, n + 1): result = (result * i) % mod if result == 0: break print(result)