풀이
count_input=input() #첫째 줄 입력
num_input=input() #둘째 줄 입력
count_input = list(count_input.split(" ")) #입력받은 값을 리스트로 변환하고 구분자를 공백으로 지정하여 구분한다
num_input = list(num_input.split(" ")) #둘째 줄 또한 마찬가지
count = 0 #카운트 초기화
for i in num_input: #num_input 리스트 값들을 순회
if count_input[1] in i: #첫째 줄에 두번째 입력값과 num_input의 리스트 값이 동일하다고 조건을 설정
count+=1 #같으면 카운트 증가
print(int(count_input[0]) - count) #첫째 줄에서 입력한 갯수에서 카운트한 값들을 빼고 정수로 변환해서 출력