#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int n, a[100], s = 0;
ifstream get("plopi1.in");
ofstream out("plopi1.out");
get >> n;
for (int i = 0; i < n; i++)
{
get >> a[i];
}
for (int j = 0; j < n; j++)
{
if (a[j] > a[j + 1])
s++;
}
out << s;
return 0;}
//Nota: Dupa cum observi,numarul minim de pomi care trebuie taiati este egal cu numarul inversiunilor din interval...