# Topic: Pttern Lecture-1 
#Question: Code 2 

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