Little Petya is now fond of data compression algorithms. He has already studied gz, bz, zip algorithms and many others. Inspired by the new knowledge, Petya is now developing the new compression algorithm which he wants to name dis.
Petya decided to compress tables. He is given a table a consisting of n rows and m columns that is filled with positive integers. He wants to build the table a' consisting of positive integers such that the relative order of the elements in each row and each column remains the same. That is, if in some row i of the initial table ai,j<ai,k, then in the resulting table a'i,j<a'i,k, and if ai,j=ai,k then a'i,j=a'i,k. Similarly, if in some column j of the initial table ai,j<ap,j then in compressed table a'i,j<a'p,j and if ai,j=ap,j then a'i,j=a'p,j.
Because large values require more space to store them, the maximum value in a' should be as small as possible.
Petya is good in theory, however, he needs your help to implement the algorithm.
Output
Output the compressed table in form of
n lines each containing
m integers.
If there exist several answers such that the maximum number in the compressed table is minimum possible, you are allowed to output any of them.
Examples
Output
2 1 3
5 4 3
5 6 7
9 8 7
Note
In the first sample test, despite the fact
a1,2≠a21, they are not located in the same row or column so they may become equal after the compression.