#Define list
v = [24, 20, 29, 32, 34, 29, 49, 46, 39, 23, 42, 24, 38]
#Prompt user.
user = int(input("Enter value: "))
#Find section.
#Count how many same elements are in the list?
print(-1 if (v.count(user)==0) else [i for i in range(len(v)) if v[i] == user])