{"raw_statement":[{"iden":"problem statement","content":"Takahashi is a teacher responsible for a class of $N$ students.\nThe students are given distinct student numbers from $1$ to $N$.\nToday, all the students entered the classroom at different times.\nAccording to Takahashi's record, there were $A_i$ students in the classroom when student number $i$ entered the classroom (including student number $i$).\nFrom these records, reconstruct the order in which the students entered the classroom."},{"iden":"constraints","content":"*   $1 \\le N \\le 10^5$\n*   $1 \\le A_i \\le N$\n*   $A_i \\neq A_j $ $(i \\neq j)$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$A_1$ $A_2$ $\\ldots$ $A_N$"},{"iden":"sample input 1","content":"3\n2 3 1"},{"iden":"sample output 1","content":"3 1 2\n\nFirst, student number $3$ entered the classroom.\nThen, student number $1$ entered the classroom.\nFinally, student number $2$ entered the classroom."},{"iden":"sample input 2","content":"5\n1 2 3 4 5"},{"iden":"sample output 2","content":"1 2 3 4 5"},{"iden":"sample input 3","content":"8\n8 2 7 3 4 5 6 1"},{"iden":"sample output 3","content":"8 2 4 5 6 7 3 1"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}