#include <iostream>
using namespace std;

int main() {

int n = 10;
for (int i = 0; i < n; i++)
  {
    for (int j = 0; j < n; j++)
    {
      std::cout << (i + j) % 5 + 1 << " ";
    }
    std::cout << std::endl;
  }
  
	return 0;
}