5997: Characteristics of Rectangles

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

D. Characteristics of Rectangles
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
Gerald found a table consisting of n rows and m columns. As a prominent expert on rectangular tables, he immediately counted the table's properties, that is, the minimum of the numbers in the corners of the table (minimum of four numbers). However, he did not like the final value − it seemed to be too small. And to make this value larger, he decided to crop the table a little: delete some columns on the left and some on the right, as well as some rows from the top and some from the bottom. Find what the maximum property of the table can be after such cropping. Note that the table should have at least two rows and at least two columns left in the end. The number of cropped rows or columns from each of the four sides can be zero.
Input
The first line contains two space-separated integers n and m (2≤n,m≤1000). The following n lines describe the table. The i-th of these lines lists the space-separated integers ai,1,ai,2,...,ai,m (0≤ai,j≤109) − the m numbers standing in the i-th row of the table.
Output
Print the answer to the problem.
Examples
Input
2 2
1 2
3 4
Output
1
Input
3 3
1 0 0
0 1 1
1 0 0
Output
0
Note
In the first test case Gerald cannot crop the table − table contains only two rows and only two columns.
In the second test case if we'll crop the table, the table will contain zero in some corner cell. Also initially it contains two zeros in the corner cells, so the answer is 0.

输入样例 复制


输出样例 复制