import java.util.Scanner;
class Ideone {
public static void main
(String[] args
) { // Scanner scanner = new Scanner(System.in);
// System.out.print("Enter an integer: ");
// int n = scanner.nextInt();
// printPattern(n);
// scanner.close();
printPattern(3);
}
public static void printPattern(int n) {
int totalRows = n + 2;
int totalCols = n * 2;
for (int i = 1; i <= totalRows; i++) {
if (i <= n) { // Top n rows
for (int j = 1; j <= totalCols; j++) {
if (j <= totalCols - n) {
} else {
}
}
} else if (i == n + 1) { // Second to last row with asterisk
for (int j = 1; j <= totalCols; j++) {
int starStartCol = totalCols - n - (n / 2) - 1;
int starEndCol = starStartCol + (2 * (n / 2) + 1);
if (j >= starStartCol && j <= starEndCol) {
} else if (j > totalCols - n) {
} else {
}
}
} else { // Last row with all asterisks
for (int j = 1; j <= totalCols; j++) {
if (j <= totalCols - n) {
} else {
}
}
}
}
}
}