1380: 求二维数组中的最大值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:32 Solved:18

Description

输入两个整数M.N(<100),接着输入M*N的矩阵(非负整数),设置将矩阵中最大的数输出。

Input

整数M,N,M*N的矩阵

Output

矩阵中最大的数

Sample Input Copy

3 3
11 2 3 
4 5 6
7 25 8

Sample Output Copy

25