Go To School

Takahashi is a teacher responsible for a class of N students. The students are given distinct student numbers from 1 to N.

Today, all the students entered the classroom at different times. According to Takahashi's record, there were Ai​ students in the classroom when student number i entered the classroom (including student number i).

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

Constraints

  • 1 ≤ N ≤ 100000
  • 1 ≤ Ai​ ≤ N
  • Ai​ are unique

Input

The first line contains the integer N
The next line contains the integers A1​ to AN

Output

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

Sample Input 1

3
2 3 1

Sample Output 1

3 1 2

Sample Input 2

5
1 2 3 4 5

Sample Output 2

1 2 3 4 5

Sample Input 3

8
8 2 7 3 4 5 6 1

Sample Output 3

8 2 4 5 6 7 3 1


Submitting to 'Go To School'


You're not logged in! Click here to login


Submitting to 'Go To School'


You're not logged in! Click here to login


Submitting .cpp to 'Go To School'


You're not logged in! Click here to login

Time Limit: 1 Seconds
Memory Limit: 1024MB
Your best score: 0
Source: ABC142

Subtask Score
1 100
2 0