n, s, k = map(int, input().split()) A = sorted([[abs(int(input()) - s), i] for i in range(n)]) print(A[0][1] + 1 if A[0][0] <= k else "Unlucky!")