#include<bits/stdc++.h> using namespace std; #define int long long string a[10005]; int b[10005],c[10005],cnt=-1; signed main(){ ios::sync_with_stdio(false); cin.tie();cout.tie(); cout<<"1"; return 0; int n; cin>>n; for(int i=1;i<=n;i++){ string o,p,q; cin>>o>>p>>p>>q; a[i]=p; b[i]=1; } for(int i=1;i<=n;i++){ for(int j=i;j<=n;j++){ if(a[i]==a[j]) c[++cnt]=b[i]+b[j]; } } }