#include<bits/stdc++.h>
using namespace std;
void shuchu(int j)
{
for(int i = 1;i <= 10;i++)
{
if(i * i == j)
{
cout << '!';
}
}
cout << '#';
}
int main()
{
int n, kg, zf = 1;
cin >> n;
kg = n - 1;
for(int i = 1;i <= n;i++)
{
for(int j = 1;j <= kg;j++)
{
cout << ' ';
}
for(int j = 1;j <= zf;j++)
{
shuchu(j);
}
kg--;
zf += 2;
cout << endl;
}
return 0;
}