int n = int.Parse(Console.ReadLine());
Console.Write(new string('.', n));
Console.Write(new string('*', n));
for (int row = 0; row < n - 1; row++)
Console.Write(new string ('.', n - row - 1));
Console.Write(new string ('.', n + row - 1));
for (int i = 0; i < 2 * n; i++)