#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; vector A(10,1); rep(i,n){ int a,b,c,d; string r; cin>>a>>b>>c>>d>>r; if(r[0]=='Y'){ rep(j,10){ if(j!=a && j!=b && j!=c && j!=d) A[j]=0; } } else A[a]=0,A[b]=0,A[c]=0,A[d]=0; } rep(i,10) if(A[i]) cout<