import java.util.Scanner;
public class a418 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
int n = sc.nextInt(); //輸入所需層數
for(int i = 1 ; i <= n ; i++){
System.out.println(); //換行
for(int j = 1 ; j <= n ; j++) {
if(i>=j) { //第幾層就印出幾顆*
System.out.print("*");
}
}
}
}
}
}
/*解題方向 設要印出3層
1 2 3 <=j迴圈
i= 1 *
2 * *
3 * * *
在i=1(第一層),j=1時要印出一顆
在i=2(第2層),j=1,2時要印出2顆
在i=3(第3層),j=1,2,3時要印出3顆
所以畫圖出來後可以得知公式 i>=j時才會印出*
*/