#include using namespace std; int main(){ int N; cin>>N; bool f[10]={0}; while(N--){ int a[4]; string str; for(int i=0;i<4;i++)cin>>a[i]; cin>>str; if(str=="YES"){ for(int j=0;j<10;j++){ if(find(a,a+4,a[j])!=a+4)continue; f[j]=true; } } else{ for(int j=0;j<4;j++)f[a[j]]=true; } } for(int i=0;i<10;i++){ if(!f[i]){ cout<