• + 1 comment

    This is what I came up with.

    if __name__ == '__main__':
        n = int(input())
    
    n = n + 1
    v_combine = ''
    
    for v_value in range(1,n):
        v_combine += str(v_value)    
    
    print(v_combine)