#include #include using namespace std; int N,M; int T[501][501]; bool ask(int x,int y) { if(T[x][y])return T[x][y]==1; cout<>r; if(r=="-1")exit(1); T[x][y]=r=="Black"?1:-1; return T[x][y]==1; } int d[5]={0,1,0,-1}; bool vis[501][501]; void dfs(int x,int y) { vis[x][y]=true; for(int r=0;r<4;r++) { int tx=x+d[r],ty=y+d[r+1]; if(tx<1||ty<1||tx>N||ty>N||vis[tx][ty])continue; if(ask(tx,ty))dfs(tx,ty); } } main() { cin>>N>>M; T[1][1]=T[N][N]=1; dfs(1,1); cout<<(vis[N][N]?"Yes":"No")<