Problem F: 颁奖典礼

Problem F: 颁奖典礼

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

有 lns="http://www.w3.org/1998/Math/MathML">n 个学生参加一场颁奖典礼,他们的学号为 lns="http://www.w3.org/1998/Math/MathML">1 到 lns="http://www.w3.org/1998/Math/MathML">n

已知学号为 lns="http://www.w3.org/1998/Math/MathML">i 的学生是第 lns="http://www.w3.org/1998/Math/MathML">ai 个上台的,请根据上台顺序从前到后输出学号序列。

Input

  • 第一行,单个整数 lns="http://www.w3.org/1998/Math/MathML">n
  • 第二行,lns="http://www.w3.org/1998/Math/MathML">n 个整数 lns="http://www.w3.org/1998/Math/MathML">a1,a2,,an
  • 对于 lns="http://www.w3.org/1998/Math/MathML">30% 的数据,lns="http://www.w3.org/1998/Math/MathML">1n10
  • 对于 lns="http://www.w3.org/1998/Math/MathML">60% 的数据,lns="http://www.w3.org/1998/Math/MathML">1n1000
  • 对于 lns="http://www.w3.org/1998/Math/MathML">100% 的数据,lns="http://www.w3.org/1998/Math/MathML">1n100,000 , lns="http://www.w3.org/1998/Math/MathML">1ain



Output

 个整数,按上台顺序输出学号序列。

Sample Input Copy

3
3 1 2

Sample Output Copy

2 3 1

HINT

1号第3个上台
2号第1个上台
3号第2个上台