#dwacon5thprelimsa. [dwacon5th_prelims_a]Thumbnail

[dwacon5th_prelims_a]Thumbnail

Problem Statement

Niwango-kun is an employee of Dwango Co., Ltd.
One day, he is asked to generate a thumbnail from a video a user submitted.
To generate a thumbnail, he needs to select a frame of the video according to the following procedure:

  • Get an integer NN and NN integers a0,a1,...,aN1a_0, a_1, ..., a_{N-1} as inputs. NN denotes the number of the frames of the video, and each aia_i denotes the representation of the ii-th frame of the video.
  • Select tt-th frame whose representation ata_t is nearest to the average of all frame representations.
  • If there are multiple such frames, select the frame with the smallest index.

Find the index tt of the frame he should select to generate a thumbnail.

Constraints

  • 1leqNleq1001 \\leq N \\leq 100
  • 1leqaileq1001 \\leq a_i \\leq 100
  • All numbers given in input are integers

Input

Input is given from Standard Input in the following format:

NN a0a_{0} a1a_{1} ...... aN1a_{N-1}

Output

Print the answer.


Sample Input 1

3
1 2 3

Sample Output 1

1

Since the average of frame representations is 22, Niwango-kun needs to select the index 11, whose representation is 22, that is, the nearest value to the average.


Sample Input 2

4
2 5 2 5

Sample Output 2

0

The average of frame representations is 3.53.5.
In this case, every frame has the same distance from its representation to the average.
Therefore, Niwango-kun should select index 00, the smallest index among them.