#include using namespace std; #define int long long using ll=long long; using vi=vector; using vl=vector; using pii=pair; using pll=pair; #define ITR(i,c) for(auto i=begin(c);i!=end(c);++i) #define FORE(x,c) for(auto &x:c) #define REPF(i,a,n) for(int i=a,i##_len=(int)(n);i=0;--i) #define ALL(c) begin(c),end(c) #define RALL(c) rbegin(c),rend(c) // c++14 #define SZ(c) ((int)c.size()) #define EXIST(c,x) (c.find(x)!=end(c)) #define OUTOFRANGE(y,x,h,w) (y<0||x<0||y>=h||x>=w) #define dump(...) const int DX[9]={0,1,0,-1,1,1,-1,-1,0},DY[9]={-1,0,1,0,-1,1,1,-1,0}; #define INF (1001001001) #define INFLL (1001001001001001001ll) template ostream& operator << (ostream &os,const vector &v) { ITR(i,v) os << *i << (i==end(v)-1 ? "" : " "); return os; } template istream& operator >> (istream &is,vector &v) { ITR(i,v) is >> * i; return is; } template istream& operator >> (istream &is, pair &p) { is >> p.first >> p.second; return is; } templatebool chmax(T &a,const T &b){if(abool chmin(T &a,const T &b){if(b; bool YbiggerthanX(myp X,myp Y) { return X.first>N; vector box(N); REP(i,N) { vi a(3); cin>>a; sort(ALL(a)); box[i].first=a[0]; box[i].second.first=a[1]; box[i].second.second=a[2]; } sort(ALL(box)); dp[0]=1; REPF(i,1,N) { REP(j,i) { if(YbiggerthanX(box[j],box[i])) chmax(dp[i],dp[j]); } dp[i]++; } cout<<(*max_element(ALL(dp)))<