import java.util.*; import java.io.*; import java.text.*; //Solution Credits: Taranpreet Singh public class Main{ //SOLUTION BEGIN void solve(int TC) throws Exception{ int n = ni(); long s = nl();mod = nl(); long[] ans = new long[n+1];ans[1] = s; for(int i = 2; i<= n; i++){ if(i%2==0)ans[i] = add(mul(ans[i-1], s), mod-ans[i/2]); else ans[i] = add(mul(ans[i-1], s), mod-ans[(i+1)/2]); } pn(ans[n]); } long mul(long a, long b){ if(a>=mod)a%=mod; if(b>=mod)b%=mod; a*=b; if(a>=mod)a%=mod; return a; } long add(long a, long b){ if(Math.abs(a)>=mod)a%=mod; if(a<0)a+=mod; if(Math.abs(b)>=mod)b%=mod; if(b<0)b+=mod; a+=b; if(Math.abs(a)>=mod)a%=mod; return a; } long pow(long a, long p){ long o = 1; while(p>0){ if(p%2==1)o = (a*o)%mod; a = (a*a)%mod; p>>=1; } return o; } //SOLUTION END long mod = (long)1e9+7, IINF = (long)5e18; final int INF = (int)2e9, MAX = (int)4e5+1; DecimalFormat df = new DecimalFormat("0.000000000"); double PI = 3.1415926535897932384626433832792884197169399375105820974944, eps = 1e-8; static boolean multipleTC = false, memory = false; FastReader in;PrintWriter out; void run() throws Exception{ in = new FastReader(); out = new PrintWriter(System.out); int T = (multipleTC)?ni():1; //Solution Credits: Taranpreet Singh for(int i = 1; i<= T; i++)solve(i); out.flush(); out.close(); } public static void main(String[] args) throws Exception{ if(memory)new Thread(null, new Runnable() {public void run(){try{new Main().run();}catch(Exception e){e.printStackTrace();}}}, "1", 1 << 28).start(); else new Main().run(); } long gcd(long a, long b){return (b==0)?a:gcd(b,a%b);} int gcd(int a, int b){return (b==0)?a:gcd(b,a%b);} int bit(long n){return (n==0)?0:(1+bit(n&(n-1)));} void p(Object o){out.print(o);} void pn(Object o){out.println(o);} void pni(Object o){out.println(o);out.flush();} String n(){return in.next();} String nln(){return in.nextLine();} int ni(){return Integer.parseInt(in.next());} long nl(){return Long.parseLong(in.next());} double nd(){return Double.parseDouble(in.next());} class FastReader{ BufferedReader br; StringTokenizer st; public FastReader(){ br = new BufferedReader(new InputStreamReader(System.in)); } public FastReader(String s) throws Exception{ br = new BufferedReader(new FileReader(s)); } String next(){ while (st == null || !st.hasMoreElements()){ try{ st = new StringTokenizer(br.readLine()); }catch (IOException e){ e.printStackTrace(); } } return st.nextToken(); } String nextLine(){ String str = ""; try{ str = br.readLine(); }catch (IOException e){ e.printStackTrace(); } return str; } } }