using System;
public class Program
{
public static void Main()
int n = int.Parse(Console.ReadLine());
int Intervall=n;
int zvezdi = 0;
string sreda = " | ";
for(int i=0;i<=n;i++)
string sI = new string( ' ',Intervall);
string sZ = new string( '*',zvezdi);
Console.WriteLine(sI+sZ+sreda+sZ);
zvezdi++;
Intervall--;
}