100 atcoder#ABC142C. [ABC142C] Go to School

[ABC142C] Go to School

Score : 300300 points

Problem Statement

Takahashi is a teacher responsible for a class of NN students.

The students are given distinct student numbers from 11 to NN.

Today, all the students entered the classroom at different times.

According to Takahashi's record, there were AiA_i students in the classroom when student number ii entered the classroom (including student number ii).

From these records, reconstruct the order in which the students entered the classroom.

Constraints

  • 1N1051 \le N \le 10^5
  • 1AiN1 \le A_i \le N
  • AiAjA_i \neq A_j (ij)(i \neq j)
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 \ldots ANA_N

Output

Print the student numbers of the students in the order the students entered the classroom.

3
2 3 1
3 1 2

First, student number 33 entered the classroom.

Then, student number 11 entered the classroom.

Finally, student number 22 entered the classroom.

5
1 2 3 4 5
1 2 3 4 5
8
8 2 7 3 4 5 6 1
8 2 4 5 6 7 3 1