#include<iostream.h>
#include<iomanip.h>

int main()

{  int i,j;

   cout<<setw(10)<<"#"<<endl;
   for( i=9,j=1;i>0,j<10;i--,j++)

     { cout<<setw(i)
           <<"#";
       
       
      
       cout<<setfill('#')
           <<setw(2*j)
           <<"#"
           <<endl;
     }
  
    system("pause");
}