N = int(input()) def kaijou(N): if N==0: return 1 return (N * kaijou(N-1))%(10**12) print(kaijou(N))