N = int(input()) mod = 1000000000000 ans = 1 for i in range(1,N+1): ans *= i ans %= mod if ans == 0: break print(ans)