two kinds of digit by L.A.I.N.

for x in range(10001):\x0d
 c=0\x0d
 for b in range(10):\x0d
  if str(b) in str(x):c+=1\x0d
 if c==2:print x

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page