document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     #include<iostream>
  2.     using namespace std;
  3.     int main(){
  4.         int a;
  5.         while(cin>>a){
  6.             for(int i=1;i<=a;i++){
  7.                 for(int j=1;j<=a*2;j++){
  8.                     cout<<(j>a-i&&j<a+i?"*":" ");
  9.                 }
  10.                 cout<<endl;
  11.             }
  12.         }
  13.         return 0;
  14.     }
');