#include using namespace std; using Int = long long; template inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template inline void chmax(T1 &a,T2 b){if(a dp; dp[1]=0; for(Int i=1,x=1;i<=m;i++){ x=x*a%m; if(dp.count(x)) return i-dp[x]; dp[x]=i; } return -1; } Int mpow(Int x,Int n,Int m){ Int v=1; while(n){ if(n&1) v=v*x%m; x=x*x%m; n>>=1; } return v; } //INSERT ABOVE HERE using P = pair; const Int MAX = 2020; Int tetr(Int a,Int n){ if(n==0) return 1; if(a==1) return 1; Int v=1; for(Int i=0;iMAX) return -1; } v=u; } return v; } Int dfs(Int a,Int n,Int m){ if(m==1) return 0; if(n==0) return 1; Int x=tetr(a,n-1); if(~x) return mpow(a,x,m); Int v=peri(a,m); return mpow(a,MAX+((dfs(a,n-1,v)-MAX)%v+v)%v,m); } signed main(){ Int a,n,m; cin>>a>>n>>m; cout<