#includeint main(){ for(int j=5;j>0;j--) { for(int i=1;i<=j;i++) printf("%c",' '); for(i=j;i<=5;i++) printf("%c",'*'); printf("\n"); } return 0;}