#abc217c. [abc217_c]Inverse of Permutation

[abc217_c]Inverse of Permutation

Problem Statement

We will call a sequence of length NN where each of 1,2,dots,N1,2,\\dots,N occurs once as a permutation of length NN.
Given a permutation of length NN, P=(p1,p2,dots,pN)P = (p_1, p_2,\\dots,p_N), print a permutation of length NN, Q=(q1,dots,qN)Q = (q_1,\\dots,q_N), that satisfies the following condition.

  • For every ii (1leqileqN)(1 \\leq i \\leq N), the pip_i-th element of QQ is ii.

It can be proved that there exists a unique QQ that satisfies the condition.

Constraints

  • 1leqNleq2times1051 \\leq N \\leq 2 \\times 10^5
  • (p1,p2,dots,pN)(p_1,p_2,\\dots,p_N) is a permutation of length NN (defined in Problem Statement).
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN p1p_1 p2p_2 dots\\dots pNp_N

Output

Print the sequence QQ in one line, with spaces in between.

q1q_1 q2q_2 dots\\dots qNq_N


Sample Input 1

3
2 3 1

Sample Output 1

3 1 2

The permutation Q=(3,1,2)Q=(3,1,2) satisfies the condition, as follows.

  • For i=1i = 1, we have pi=2,q2=1p_i = 2, q_2 = 1.
  • For i=2i = 2, we have pi=3,q3=2p_i = 3, q_3 = 2.
  • For i=3i = 3, we have pi=1,q1=3p_i = 1, q_1 = 3.

Sample Input 2

3
1 2 3

Sample Output 2

1 2 3

If pi=ip_i = i for every ii (1leqileqN)(1 \\leq i \\leq N), we will have P=QP = Q.


Sample Input 3

5
5 3 2 4 1

Sample Output 3

5 3 2 4 1