#include using namespace std; int main(){ int n,a,b,c,d; string text; vector set(10,0); cin>>n; for(int i=0;i>a>>b>>c>>d>>text; if(text=="YES"){ set[a-1]++; set[b-1]++; set[c-1]++; set[d-1]++; } else if(text=="NO"){ set[a-1]--; set[b-1]--; set[c-1]--; set[d-1]--; } } int m=0; for(int i=0;i<10;i++){ m=max(m,set[i]); } for(int i=0;i<9;i++){ if(set[i]==m) cout<