#include using namespace std; int main() { char box=219; for(int height=1;height<=6;height++) { for(int width=1;width<=10;width++) { cout << box; } cout << endl; } return 0; }