import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int count = 0; //몇 개가 일치하는지 세는 변수
int N = Integer.parseInt(br.readLine()); //for문을 몇 번 돌릴지 정함. 즉, 두번째 줄 띄어쓰기 된 숫자의 개수
String[] str = br.readLine().split(" "); //첫 줄의 수에 맞는 숫자를 적어준다. 띄어쓰기로 구분
String b = br.readLine(); //몇 개 있는지 찾을 숫자
for(int i = 0 ; i < N ; i++){
if(str[i].equals(b) ){
count++;
}
}
bw.write(String.valueOf(count));
bw.flush();
bw.close();
}
}