AT_abc457_a [ABC457A] Array

Description

You are given a sequence $ A = (A_1, A_2, \cdots , A_N) $ of length $ N $ . After that, an integer $ X $ between $ 1 $ and $ N $ , inclusive, is given. Output the value of $ A_X $ .

Input Format

The input is given from Standard Input in the following format: > $ N $ $ A_1 $ $ A_2 $ $ \ldots $ $ A_N $ $ X $

Output Format

Output the value of $ A_X $ .

Explanation/Hint

### Sample Explanation 1 We have $ (A_1, A_2, A_3, A_4 , A_5) = (1, 2, 3, 4, 5) $ . Since $ A_3 = 3 $ , output $ 3 $ . ### Constraints - $ 1 \le X \le N \le 100 $ - $ 1 \le A_i \le 100 $ - All input values are integers.