#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits #include //tm using namespace std; constexpr int64_t D_MOD = 1000000007; constexpr int64_t F_MOD = 998244353; int main() { int N, K; cin >> N >> K; char A; string temp; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { cin >> A; for (int k = 0; k < K; k++) { temp.push_back(A); } } for (int j = 0; j < K; j++) { cout << temp << endl; } temp.clear(); } return 0; }