n = int(input()) a = list(map(int,input().split())) b = [0]*n i=0 for ele in a: b[i] = a[ele-1] i+=1 print(*b)