l=[]
s=0
a=1
while a!=0:
a=int(input("Enter number without repetition or 0 to exit = "))
l.append(a)
n=int(input("Enter the number to search = "))
c=0
for i in range(0,len(l)):
if l[i]==n:
print("The number found =",n,"position =",i+1)
else:
print(end="")
s=0
a=1
while a!=0:
a=int(input("Enter number without repetition or 0 to exit = "))
l.append(a)
n=int(input("Enter the number to search = "))
c=0
for i in range(0,len(l)):
if l[i]==n:
print("The number found =",n,"position =",i+1)
else:
print(end="")