12345678910
for (int x=1; x<=Height; x++) { for(int y=1; y<x; y++) { cout << "*"; } cout << endl; }
for( int y = 1; y < x+1; y++ )