test_case = gets.chomp.to_i list = gets.chomp.split.map(&:to_i) cnt = 0 list.uniq().each{|i| cnt += 1 if list.count(i) == 1} puts cnt