Problem1531--2005年春浙江省计算机等级考试二级C 编程题(3)

1531: 2005年春浙江省计算机等级考试二级C 编程题(3)

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 3  Solved: 3
[Submit] [Status] [Web Board] [Creator:]

Description

输入一个正整数n (1≤ n ≤6),再输入一个n n列的矩阵,找出该矩阵中绝对值最大的元素以及它的行下标和列下标。

Input

n

nxn

Output

数 行 列

Sample Input Copy

2
1 2
3 4

Sample Output Copy

4 2 2

Source/Category