Write a program in C++ to print an American flag on the screen

Write a program in C++ to print an American flag on the screen




#include<iostream>
using namespace std;
int main()
{
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"* * * * * * ======================================"<<endl;
 cout<<"=================================================="<<endl;
 cout<<"=================================================="<<endl;
 cout<<"=================================================="<<endl;
 cout<<"=================================================="<<endl;
 cout<<"=================================================="<<endl;
 cout<<"=================================================="<<endl;

}


Write a program in C++ to print an American flag on the screen