#include #include using namespace std; int main() { //Output a horizontal line of 36 X's, all on the same line. for (int col {0}; col < 36; ++col) { //col stands for "column". cout << "X"; } cout << "\n"; return EXIT_SUCCESS; }