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