真不知道 是不是我自己写的 题解也没有一样的 我感觉我写不出来 这种程度

```while True:
    try :
        n,m,k=int(input()),list(input().split()),int(input())
        print(m[n-k] if k else 0)
    except:
        break