Problem A: 最小的数(二维数组、双重循环)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:30 Solved:8

Description

输入一个3×3二维数组(数不重复),找出其中最小的数,输出其所在行号和列号。

Input

输入一个3×3二维数组

Output

输出最小的数的行号和列号

Sample Input Copy

2 3 4
7 6 5
9 1 8

Sample Output Copy

3 2

Source/Category