#include #include using namespace std; int n; int cnt[10]; int main(){ while(cin >> n){ memset(cnt, 0, sizeof(cnt)); for(int i = 0; i < n; i++){ for(int j = 0; j < 3; j++){ int x; cin >> x; cnt[x - 1]++; } } int ans = 0; for(int i = 0; i < 10; i++){ ans += cnt[i] / 2; } ans += (n * 3 - ans * 2) / 4; cout << ans << endl; } }