class Solution:
    def printNumbers(self , n: int) -> List[int]:
        # write code here
        return [i for i in range(1,10**n)]