Security Function Inverses

  • + 0 comments

    Many variations of the same theme...

    n = int(input())
    
    inv = [0] * (n+1)
    for x,y in enumerate(map(int, input().split()),1):
        inv[y] = x
    print(*rev[1:], sep = '\n')