#includeint main(){int i,j; for(i=0;i<7;i++) {for(j=0;j<7;j++) printf("%c",i+j<4||i+j>8||j-i>2||i-j>2?'*':' '); printf("\n"); }return 0;}