from itertools import* for n in range(9999): for p in permutations(sorted(str(n+1))): if('1',)<=p==p[::-1]:print(*p,sep='');break