#include<stdio.h>
int main()
{
int i,j;
for( i=1 ; i< 7 ; i++)
{
for(j=1;j<=i;j++)
{
putchar('*');
}
printf("\n");
}
return 0;
}
04-06
709