def mult_table(n):
    table = [0]*n
    row = 0
    columns = list(range(n))
    while row < n:
        this_row = []
        for c in columns:
            this_row.append((row+1)*(c+1))
        table[row] = this_row       
        row = row + 1
    return table
