#include <iostream>
#include <vector>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cout.tie(NULL);
cin.tie(NULL);
int t;
cin >> t;
vector<string>list(t);
vector<string>str(t);
for (int i = 0; i < t; i++) {
int r;
cin >> r >> list[i];
for (int j = 0; j < list[i].size(); j++) {
str[i].append(r, list[i].at(j));
}
}
for (int i = 0; i < t; i++) {
cout << str[i] << endl;
}
return 0;
}