#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include using namespace std; //using namespace atcoder; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 //#define MOD 1000000007 #define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 #define PI acos(-1.0) const double EPS = 1e-10; using ll = long long; using Pi = pair; using Pl = pair; //using mint = modint1000000007; int dh[] = {-1,0,1,0}; int dw[] = {0,1,0,-1}; class DisjointSet{ public: vector rank,p,siz,es; DisjointSet(){} DisjointSet(ll size){ rank.resize(size,0); p.resize(size,0); siz.resize(size,1); es.resize(size,0); rep(i,size) makeSet(i); } void makeSet(ll x){ p[x] = x; rank[x] = 0; } bool same(ll x, ll y){ return root(x) == root(y); } void unite(ll x, ll y){ x = root(x); y = root(y); es[x]++; if(x == y) return; if(rank[x] > rank[y]){ siz[x] += siz[y]; es[x] += es[y]; p[y] = x; } else{ siz[y] += siz[x]; es[y] += es[x]; p[x] = y; if(rank[x] == rank[y]) rank[y]++; } } ll root(ll x){ if(x != p[x]){ p[x] = root(p[x]); } return p[x]; } ll size(ll x){ return siz[root(x)]; } ll esize(ll x){ return es[root(x)]; } }; int main(){ int n; cin >> n; string ans = ""; DisjointSet uf(n); rep(i,n*(n-1)/2){ int a,b; cin >> a >> b; a--; b--; uf.unite(a,b); string c; cin >> c; if(uf.size(0) == n){ if(ans == "") ans = c; } } cout << ans << endl; }