cells = [[val for val in [[i, j, 0] for j in range(1,9)]] for i in range(1,9)]
for row in cells:
		print(row)