fork download
  1. #pragma GCC optimize("O3")
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4.  
  5. using ll = long long;
  6. using ld = long double;
  7.  
  8. constexpr int mod = 1e9 + 7;
  9. constexpr int inf = 1e9;
  10. constexpr ll linf = 1e18;
  11. constexpr ld eps = 1e-9;
  12.  
  13. #define fast_io() ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr)
  14. #define all(x) (x).begin(), (x).end()
  15. #define pb push_back
  16. #define fi first
  17. #define se second
  18. #define sz(x) ((int)(x).size())
  19.  
  20. void solve() {
  21. int n, m, k; cin >> n >> m >> k;
  22. vector<string> vc(n);
  23. for (auto& x : vc) cin >> x;
  24. for (int i = 0; i < n; i++) {
  25. string cur;
  26. for (char ch : vc[i]) {
  27. for (int j = 0; j < k; j++) cur += ch;
  28. }
  29. for (int j = 0; j < k; j++) cout << cur << '\n';
  30. }
  31. }
  32.  
  33. int main() {
  34. fast_io();
  35. freopen("cowsignal.in", "r", stdin);
  36. freopen("cowsignal.out", "w", stdout);
  37. int t = 1;
  38. // cin >> t;
  39. while (t--) solve();
  40. return 0;
  41. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
Standard output is empty