n, _ = map(int, input().split()) a = map(int, input().split()) l = [i+1 for i in range(n)] for i in a: x = l.pop(i-1) l.insert(0, x) print(l[0])