5 lines
135 B
Python
5 lines
135 B
Python
n = int(input())
|
|
d = list(map(int, input().split()))
|
|
pos = [1] + [d.index(i) + 2 for i in range(n - 1)]
|
|
print(" ".join(map(str, pos)))
|