gets array = gets.chomp.split(" ").map(&:to_i) count = 0 array.uniq.each{|value| if array.count(value) == 1 count += 1 end } puts count