#include <iostream>
#include <string>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b){
if(a==0&&b==0){
break;
}
string sent;
while(a--){
string tmp;
cin>>tmp;
sent+=tmp;
}
while(b--){
int c;
cin>>c;
cout<<sent[c-1];
}
}
return 0;
}