#include using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template using V=vector; template using VV=V>; //B(n,V(n)) int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; V S(n); VV A(n,V(27)); map,int> m; rep(i,n){ cin>>S[i]; V a(27); a[26]=S[i].size(); int s=S[i].size(); rep(j,s){ a[S[i][j]-'a']++; } m[a]++; A[i]=a; } for(auto [a,b]:m){ if(b>1) continue; V c=a; rep(i,26){ c[i]++; int cnt=0; rep(j,n){ if(A[j][26]!=c[26]) continue; bool f=true; rep(k,26) if(A[j][k]>c[k]) f=false; if(f) cnt++; } if(cnt==1){ string ans; rep(j,26){ rep(k,c[j]) ans+=char(j+'a'); } cout<