#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::setw;
using std::fixed;
int main()
{
const int n = 6, m = 6;
int a[n][m];
int value;
for(int i = 0; i < n; i++)
{
value = 37 + i;
for(int j = 0; j < m; j++)
{
a[i][j] = value -= 6;
}
}
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m; j++)
{
cout << setw(2) << a[i][j] << " ";<br> }
cout << endl;<br> }
cin.get();
return 0;
}