??????? }
??? }
???
??? return nState == 5;
}
int main()
{
??? int nT;
???
??? scanf("%d%*c", &nT);
??? while (nT--)
??? {
??????? vector vs;
??????? string line, str;
???????
??????? getline(cin, line);
??????? stringstream ss(line);
??????? while (ss >> str)
??????? {
??????????? vs.push_back(str);
??????? }
??????? printf("%s\n", CheckState(vs) ? "YES I WILL" : "NO I WON'T");
??? }
???
??? return 0;
}