N, _ = map(int, input().split()) A = list(map(int, input().split())) L = list(range(1, N+1)) for a in A: x = L.pop(a-1) L.insert(0, x) print(L[0])