#include #define rep(i,n) for(int i = 0; i < (n); ++i) using namespace std; typedef long long ll; int main(){ int n, x, ans = 0; cin >> n >> x; vector a(n); rep(i,n) cin >> a.at(i); rep(i,n)for(int j = i; j < n; ++j){ if(a.at(i)+a.at(j) == x){ if(i != j){ ans += 2; } else{ ++ans; } } } cout << ans << endl; return 0; }