#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using ll=long long; #define int ll #define rng(i,a,b) for(int i=int(a);i=int(a);i--) #define per(i,b) gnr(i,0,b) #define eb emplace_back #define all(x) x.begin(),x.end() #define SZ(x) x.size() #define fi first #define se second const int INF = 1e9; using namespace std; template using vc=vector; template using vvc=vc>; using pi=pair; using vi=vc; template inline bool chmax(T &a,T b){if(a inline bool chmin(T &a,T b){if(a>b){a=b;return true;}return false;} signed main() { cin.tie(0); ios::sync_with_stdio(0); cout<> N; int A[N][101]; rep(i,N) rep(j,101){ A[i][j]=-1; } rep(i,N){ int t; cin >> t; rep(j,t){ cin >> A[i][j]; } } vi v; rep(i,101){ rep(j,N){ if(A[j][i]==-1) continue; v.eb(A[j][i]); } } rep(i,SZ(v)){ cout << v[i]; if(i==SZ(v)-1) cout << endl; else cout << " "; } }