• + 0 comments
    n = int(input())
    li = ""
    for i in range(1,n+1):
        li += str(i)
    print(li)