http://ac.jobdu.com/problem.php?pid=1018
// 浙大2006年机试
// 九度:1018
// 题目:统计成绩
//
// 考察:Hash
//
//
//
//
//
//
//
#include <stdio.h>
#include <cctype>
#include <cmath>
#include <cstring>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#define SIZE 110
using namespace std;
int hash[SIZE];
int N, score;
void Init()
{
for(int i=0; i<SIZE; i++)
{
hash[i] = 0;
}
}
void InPut()
{
int t;
for(int i=0; i<N; i++)
{
scanf("%d", &t);
hash[t]++;
}
scanf("%d", &score);
}
int main(){
#ifdef ONLINE_JUDGE
#else
freopen("E:\\in.txt", "r" , stdin);
#endif
while(scanf("%d", &N) && N != 0)
{
Init();
InPut();
printf("%d\n", hash[score]);
}
return 0;
}