#백준1259번 def palin(l): tmp2=[] palin_check=True for i2 in range(0,len(l)): tmp2.append(l[i2]) for i3 in range(0,(len(l)//2)+1): if tmp2[i3]==tmp2[(len(tmp2)-1)-i3]: continue else : palin_check=False break if palin_check==True: return 'yes' else : return 'no' input_lst=[] while(1): tmp=input() if tmp=='0' : break else : input_lst.append(list(tmp)) for i in range(0,len(input_lst)): print(palin(inp..