n, m = map(int, input().split()) ans = 1 for i in range(1, n + 1): ans *= i ans %= m if ans == 0: print(ans) exit() print(ans)