0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 16:05:25 +00:00
OI-codes/problem/P3156/P3156.cpp

19 lines
291 B
C++
Raw Normal View History

// R38858817
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m, a[10000005], q;
cin >> n >> m;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < m; i++) {
cin >> q;
cout << a[q-1] << endl;
}
return 0;
}