# Pattern Lecture - 1
# Question: Code 1 

for i in range(5):
	for j in range(6):
		print("0", end="")
	print()