CF650C Table Compression

Description

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 $ a_{i,j}<a_{i,k} $ , then in the resulting table $ a'_{i,j}<a'_{i,k} $ , and if $ a_{i,j}=a_{i,k} $ then $ a'_{i,j}=a'_{i,k} $ . Similarly, if in some column $ j $ of the initial table $ a_{i,j}<a_{p,j} $ then in compressed table $ a'_{i,j}<a'_{p,j} $ and if $ a_{i,j}=a_{p,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.

Input Format

N/A

Output Format

N/A

Explanation/Hint

In the first sample test, despite the fact $ a_{1,2}≠a_{21} $ , they are not located in the same row or column so they may become equal after the compression.