#include <stdio.h>

int main() {
//int a;
for(int i=1;i<5;i++){
    for(int j=0;j<i;j++){
        printf("*");
     }
     print("\n");
}
return 0;
}