#include #include #include #include #include #include #define mod 1000003 long long power(long long a,long long b){ long long x=1,y=a; while(b>0){ if(b&1ll){ x=(x*y)%mod; } y=(y*y)%mod; b>>=1; } return x%mod; } int main(void){ long long x,n,a,i,r=0; scanf("%lld%lld",&x,&n); for(i=0;i