#include using namespace std; using ll = long long; using ull = unsigned long long; constexpr int MOD = 998244353; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, l, r) for (int i = (l); i < (int)(r); i++) #define all(v) v.begin(), v.end() int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; string S,T; cin>>S>>T; int ls=S.size(),lt=T.size(); rep(i,N){ int A; cin>>A; int ans=0; for(int i=0;i*ls<=A;i++){ if((A-i*ls)%lt==0)ans=i; } int f=1; rep(i,ans){ if(!f)cout<<' '; if(f)f=0; cout<