#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z,a;
for(x=0;x<10;x++)
{
for(y=x;y<10;y++)
cout<<" ";
for(z=2*x+1;z>0;z--)
cout<<"*";
for(y=2*x;y<20;y++)
cout<<" ";
for(z=2*x+1;z>0;z--)
cout<<"*";
cout<<endl;
}
for(a=0;a<3;a++)
cout<<" ***** *****"<<endl;
}

