fork download
  1. N = int(input())
  2. trees = [int(input()) for _ in range(N)]
  3. print(trees.index(max(trees)) + 1)
Success #stdin #stdout 0.11s 14096KB
stdin
5
200
157
362
965
145
stdout
4