3 lines
95 B
Python
3 lines
95 B
Python
from itertools import permutations
|
|
print("".join(list(permutations("0123456789"))[1000000-1]))
|