#include using namespace std; using ll = long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string S; cin>>S; vector> D(26,vector(26)),C(26,vector(26,1e18)); vector L(26,-1e8); ll N=S.size(); for(int i=0;i<26;i++){ for(int j=0;j<26;j++){ cin>>D[i][j]; } } for(int i=0;i=D[i][j]?"Y":"N")<<" \n"[j==25]; } } }