#include using namespace std; #define endl '\n' #define PB push_back #define ALL(a) (a).begin(),(a).end() #define SZ(a) int((a).size()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define RBP(i,a) for(auto& i : a) #ifdef LOCAL111 #define DEBUG(x) cout<<#x<<": "<<(x)< P; typedef long long int LL; typedef unsigned long long ULL; typedef pair LP; void ios_init(){ ios::sync_with_stdio(false); cin.tie(0); //cout.setf(ios::fixed); //cout.precision(12); } int main() { ios_init(); int n; cin >> n; vector a(n); REP(i,n) cin >> a[i]; auto b = a; sort(ALL(b)); int ans = n; RREP(i,n){ if(a[i] == b[ans-1]){ ans--; } } cout << ans << endl; return 0; }