2514: 最大数和它的位置
[Creator : ]
Description
给定100个整数,请你找出其中最大的数字,以及它的输入位置(位置从1开始)。
Input
共 100 行,每行包含一个整数。
Output
第一行输出最大的数字。
第二行输出该数字的输入位置。
Sample Input Copy
22229
48558
24992
4755
11923
...
20213
Sample Output Copy
48558
2
HINT
1≤输入数字≤50000,保证输入数字互不相同。