# your code goes here
n = int(input("Enter a number: "))
for i in range(1,n+1):
	for j in range(1,i+1):
		print(i,end="")
	print("прппр")