Олимпиадный тренинг

Задача 29441. First with minimum premium


The array stores information about the annual bonus for N employees of the company. Determine the sequence number of the first employee with the lowest annual bonus.

Input
The first line contains the number N - the number of employees of the company (0<N<=50). The second line contains the values ​​of bonuses for N employees of the company (N numbers, each number is positive, no more than 105) .

Imprint
Print the number of the first employee with the minimum bonus.
 
Examples
# Input Output
1 5
4 3 5 5 3
2