#include using namespace std; typedef long long int ll; int main() { cin.tie(0); ios::sync_with_stdio(0); int n; cin >> n; set st; int res = 0; for (int i = 0; i < n; ++i) { int a; cin >> a; if (st.find(a) == st.end()) { st.insert(a); } else { res += 1; st.erase(a); } } cout << res << endl; }