mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 12:18:48 +00:00
17 lines
252 B
C++
17 lines
252 B
C++
|
#include <iostream>
|
||
|
|
||
|
using std::cin;
|
||
|
using std::cout;
|
||
|
const char endl = '\n';
|
||
|
|
||
|
int a[15];
|
||
|
|
||
|
int main() {
|
||
|
std::ios::sync_with_stdio(false);
|
||
|
for (int i = 0; i < 10; i++) {
|
||
|
cin >> a[i];
|
||
|
}
|
||
|
cout << a[a[a[0]]] << endl;
|
||
|
return 0;
|
||
|
}
|