Fereydun, the legendary Persian hero whose prophecy was to overcome Zahhak, believes that he needs a powerful mind together with a powerful body. He has just learned a new brain teaser, called Sudoku, from a Japanese trader.
Sudoku is played on a board that is a grid of n2×n2 cells. The whole grid is also partitioned into n2 sub-grids, each of size n×n. Each cell can be empty or contain an integer from 1 to n2 (inclusive). A Sudoku board is valid if it meets the following conditions:
The following figure shows two valid Sudoku boards with no empty cells:

Fereydun has a valid board with some empty cells and has asked for your help. Your task is to fill as many empty cells as you can while keeping the board valid. It is guaranteed that there is at least one way to fill all the empty cells while keeping the board valid.
This is an output-only problem, so no source code submission is required. There are 10 test cases. For each test case, you are given an input file containing a table A as the initial state of a Sudoku board, and your task is to submit an output file containing a table B as the final state of that Sudoku board after filling some of its empty cells. All A\[i]\[j] and B\[i]\[j] values (for 1≤i,j≤n2) are integers between 0 and n2 (inclusive), where value 0 indicates an empty cell.
The input is in the following format:
The output must be in the following format: