found=False k=3 while not found: d=10**k n=d while n<=10*d/6 and not found: n+=1 b=sorted(list((str(n)))) found=all(b==sorted(list((str(i*n)))) for i in range(1,7)) k=k+1 print n