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)))