n,m = map(int,input().split()) *a, = map(int,input().split()) res = list(range(1,n+1)) for ai in a: res.insert(0,res.pop(ai-1)) print(res[0])