#include<stdio.h>main(){ int n, b, h; scanf("%d",&n); for(h=0; h<n; h++) { for(b=1; b<=h; b++) { printf(" "); } printf("**\n"); } return 0;}