#include #include using namespace std; int main() { int n; cin >> n; int x = 0; int y = 0; array item{0}; for (int i = 0; i < n; ++i) { int a, b, c; cin >> a >> b >>c; ++item.at(a - 1); ++item.at(b - 1); ++item.at(c - 1); } for (int j = 0; j < 10; ++j) { x += (item.at(j) / 2); if (item.at(j) % 2 == 1) { y++; } } cout << x + (y/4) << endl; return 0; }