/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int[][] grid = new int[24][12];
		
		for (int r = 0; r < grid.length - 1; r++ ){ 
	        for (int c = 0; c < grid[c].length; c++){
	        	grid[r][c] = 5;
	        }
		}
		
		for(int[] col : grid){
			for(int val : col){
				System.out.print(val + "   ");
			}
			System.out.println();
		}
	}
}