#include<bits/stdc++.h>
using namespace std;
#define oo 1005
int main()
{
int n;
int last=oo,now;
int ans=0,length=0;
scanf("%d",&n);
for(int i=0; i<n; i++)
{
scanf("%d", &now);
if(now<last) length++,last=now,ans=max(ans,length);
else length=1,last=now;
}
printf("%d\n",ans);
}