list = [[1, 2, 3],[4, 5, 6], [7, 8, 9]] n = int(input()) for i in list: for index, j in enumerate(i): i[index] = j*n print(list)