6 lines
107 B
Python
6 lines
107 B
Python
ser = int(input())
|
|
mas = list(map(int, input().split()))
|
|
rem = mas[0]
|
|
mas.sort()
|
|
print(mas.index(rem) + 1)
|