Security Function Inverses

  • + 0 comments
    n = int(input().strip())
    f = [0] + list(map(int, input().strip().split()))
    
    for i in range (1, n+1):
            print(f.index(i))