program stars(output);
var
i, j: integer;
begin
for i := 1 to 5 do
for j := 1 to i do
write('*');
writeln
end
end.