size = int(raw_input("How big? "))
for n in range(0,size):
  for i in range(0,n+1):
    print str(n+1),
  print

