#include using namespace std; int main(){ int N; cin >> N; int a,b,c,d; string ysno; vector check(10,true); for(int i=0; i> a >> b >> c >> d; cin >> ysno; if(ysno == "YES"){ for(int j=0; j<10; j++){ if(j!=a && j!=b && j!=c && j!=d){ check.at(j)=false; } } } else{ check.at(a)=false; check.at(b)=false; check.at(c)=false; check.at(d)=false; } } for(int i=0; i<10; i++){ if(check.at(i)){ cout << i << endl; return 0; } } }