#include <iostream>
using namespace std;

int main() {
    for(int i = 1;i <= 6;i++){
        if(i == 1 || i == 2){
            for(int j = 0;j < 5;j++){
                cout << " ";
            }
            cout << "**"<< endl;
        }
        if(i == 3 || i == 4){
            cout << "************"<< endl;
        }
        if(i == 5 || i == 6){
            for(int j = 0;j < 4;j++){
                cout << " ";
            }
            cout << "*  * " << endl;
        }
    }
}
// 64 位输出请用 printf("%lld")