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