flag of georgia

#include <iostream>
#include <iomanip>

using namespace std;

const int ROWS = 5;
const int COLS = 7;

void drawFlag() {
    char flag[ROWS][COLS] = {
        {' ', ' ', ' ', ' ', ' ', ' ', ' '},
        {' ', ' ', '', '', '', '', '*'},
        {' ', '*', ' ', ' ', ' ', ' ', ' '},
        {'*', ' ', ' ', ' ', ' ', ' ', ' '},
        {'', '', '', '', '', '', '*'}
    };

    for (int i = 0; i < ROWS; ++i) {
        for (int j = 0; j < COLS; ++j) {
            cout << flag[i][j] << ' ';
        }
        cout << endl;
    }
}

int main() {
    drawFlag();
    return 0;
}