#include #include using namespace std; int main() { for (int row = 1; row <= 12; row += 1) { for (int col = 1; col <= 12; col += 1) { const int value = row * col; cout << setw(4) << value; } cout << "\n"; } }