#include using namespace std; using ll = long long; using PAIR = pair; using PAIRLL = pair; using vi = vector; using vll = vector; using vvi = vector; using vs = vector; #define rep(i,n) for(int i=0;i<(n);i++) #define INF 100000000 #define REP(i,n) for(ll i=0;i=0;i--) #define FOR(i,a,b) for(ll i=a;i<=ll(b);i++) #define FORD(i,a,b) for(ll i=a;i>=ll(b);i--) #define FORA(i,I) for(const auto& i:I) //x:コンテナ #define ALL(x) x.begin(),x.end() #define SIZE(x) ll(x.size()) //定数 #define INF32 2147483647 //2.147483647×10^{9}:32bit整数のinf #define INF64 9223372036854775807 //9.223372036854775807×10^{18}:64bit整数のinf #define MOD 1000000007 //問題による #define F first #define S second //出力(空白区切りで昇順に) #define coutALL(x) for(auto i=x.begin();i!=--x.end();i++)cout<<*i<<" ";cout<<*--x.end()< vec, int number) { auto itr = std::find(vec.begin(), vec.end(), number); size_t index = std::distance( vec.begin(), itr ); if (index != vec.size()) { // 発見できたとき return 1; } else { // 発見できなかったとき return 0; } } vector vector_find_ll(vector vec,ll num){ int N = vec.size(); vector match_num; rep(i,N){ if (vec[i] == num){ match_num.push_back(i); } } return match_num; } ll vector_max(vector vec){ ll ret = -INF64; rep(i,vec.size()){ ret = max(ret,vec[i]); } return ret; } ll vector_min(vector vec){ ll ret = INF64; rep(i,vec.size()){ ret = min(ret,vec[i]); } return ret; } int main(){ string st,en; ll N; cin >> st; cin >> N; cin >> en; int sto=0,stx=0,eno=0,enx=0; rep(i,3){ if (st[i]=='o'){ sto += 1; } else{ stx += 1; } if (en[i]=='o'){ eno += 1; } else{ enx += 1; } } if (sto != eno){ cout << "SUCCESS" << endl; return 0; } if (sto == 0 || sto==3){ cout << "FAILURE" << endl; return 0; } if (N >= 2){ cout << "FAILURE" << endl; return 0; } if (N == 0){ if (st == en){ cout << "FAILURE" << endl; return 0; } else{ cout << "SUCCESS" << endl; return 0; } } if (N==1){ if (st == en){ cout << "FAILURE" << endl; return 0; } if (st[0] == en[2]){ cout << "SUCCESS" << endl; return 0; } cout << "FAILURE" << endl; return 0; } }