import sys
import textwrap

print(textwrap.fill("".join(c for c in map(chr, range(sys.maxunicode + 1)) if c.isdecimal()), 10))