#include using namespace std; int main(void){ // Your code here! int n, ans = 0; cin >> n; int a[n]; for(int i=0; i < n; i++){ cin >> a[i]; } int pivot; pivot = a[0]; for(int i=1; i < n; i++){ if(a[i] < pivot) ans++; if(pivot < a[i]) pivot = a[i]; } cout << ans << endl; return 0; }