Var
 i,j:integer;

Begin
 For i:=1 to 6 do
  Begin
   For j:=1 to i do
    Write(i:2);
   Writeln;
  End;
End.
