l=[2,3,4,5,7,8,9]
l2=[i for i in range(l[0],l[-1]+1)]
for i in set(l2)-set(l):
print("Your lost number is: ",i)