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