n=int(input()) max=0 for i in range(n): a=int(input()) if a%10==1: max=a if max==0: print('Нет') else: print(max)