n,x=gets.split.map(&:to_i) a=gets.split.map(&:to_i) h=Hash.new(0) a.each{|v|h[v]+=1} ans=0 a.each{|v|ans+=h[x-v]} puts ans