#include <bits/stdc++.h>
using namespace std;

map<int,int> m;

int main() {
    int n;
    while(cin>>n && n!=0){
        for(int i=0;i<n;i++){
            int tmp;
            cin>>tmp;
            m[tmp]++;
        }
        int score;
        cin>>score;
        cout<<m[score]<<endl;
    }
}
// 64 位输出请用 printf("%lld")