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-i;j++){
  8.                 cout<<" ";
  9.             }
  10.             for(int k=1;k<=2*i-1;k++){
  11.                 cout<<"$";
  12.             }
  13.             cout<<endl;
  14.         }
  15.     }
  16.     return 0;
  17. }
');