4 lines
80 B
Python
4 lines
80 B
Python
_ = input()
|
|
junk = list(map(int, input().split()))
|
|
print(junk.index(min(junk)))
|