#include #include using namespace std; int main () { const int nrows {150}; const int ncols {200}; cout << "P3\n" << ncols << " " << nrows << "\n" << 255 << "\n"; for (int row {0}; row < nrows; ++row) { for (int col {0}; col < ncols; ++col) { cout << "255 165 0\n"; } } return EXIT_SUCCESS; }