MOD = 10 ** 6 + 3 x,N = map(int,input().split()) A = list(map(int,input().split())) ans = 0 for a in A: ans += pow(x, a,MOD) print(ans)