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