#include <iostream.h>
#include <iomanip.h>
int main()
{
    int y=1, z=1;
    char x='o';
    
    while(y<=5)
    {cout <<  y << setw(9) <<"Hall";
    y++;
    while(z<y) {cout << x; z++;}
    z=1;
    cout << endl;
    
    
               }
    
cout << "Programmende...";
cin.get (); cin.get();
return(0);    
    }

/*

*/
