2077: 最大数的位置

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

Description

输入n个整数,存放在数组a[1]至a[n]中,输出最大数所在位置(n≤1000)。

Input

第一行,数的个数n;

第二行,n个正整数。

Output

最大数所在位置。

Sample Input Copy

5
67 43 90 78 32

Sample Output Copy

3