#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int N, M; cin >> N >> M; deque A; for (int i = 1; i <= N; i++) { A.push_back(i); } for (int i = 0; i < M; i++) { int temp; cin >> temp; temp = temp - 1; int b = A[temp]; A.erase(A.begin() + temp); A.push_front(b); } cout << A.front() << endl; return 0; }