F[0]=0;
F[1]=1;
F[n]=F[n-1]+F[n-2], for n>1
给出n (0<=n<=10000) 和 m (0<m<10000);求斐波那契数列第n项mod m的值(因为太大了);