#include using namespace std; int rt[200]; int getroot(int n){ if(rt[n]==-1)return n; else return rt[n]=getroot(rt[n]); } bool unite(int a,int b){ a=getroot(a),b=getroot(b); if(a!=b){ rt[a]=b; return true; }else{ return false; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; fill(rt,rt+N,-1); string ans=""; for(int i=0;i>a>>b; string C; cin>>C; if(unite(a-1,b-1)){ ans=C; } } cout<