N=int(input()) ans=N l=list(map(int,input().split())) for i in range(N-1): if l[i]>l[i+1]: ans-=1 print(ans)