#include<stdio.h> int main() { int i ,j,n; while(scanf("%d",&n)!=EOF) { for(i=n;i>0;i--) { for(j=i-1;j>0;j--) printf(" "); printf("*\n"); } } }