#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(int i=0;i> N; for(i=1;i<=N;i++) cin >> a[i]; int ans=0; for(i=1;i<=N;i++){ int b; cin >> b; if(a[i]<=b) ans++; } cout << ans << endl; return 0; }