#include <iostream>

using namespace std;

int main()
{
	int n; cin >> n;

	int i = 0;
	while(i < n)
	{
		int j = 0;
		while(j < n)
		{
			if( i== 0 || j == 0 || i == n - 1 || j == n -1 || i == j || i + j == n - 1)
			{
				cout << "*";
			}
			else
			{
				cout << " ";
			}
			j++;
		}
		cout << "\n";
		i++;
	}
	return 0;
}