Create a one line program to sort a list of single digit integers.

For example, assume you have the list [1,9,3,4,6].

a=[1,9,3,4,6]
[i for i in range(0,10) if i in a]

# Result: [1, 3, 4, 6, 9]