offer_list=['Allen','Tom','Andy']
for i in offer_list:
    if (i=='Andy'):
        break
    print(f'{i}, you have passed our interview and will soon become a member of our company.')
for m in offer_list:
    if (m=='Tom'):
        continue
    print(f'{m}, welcome to join us!')