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