#38210: _C++


11131039@stu.tshs.tp.edu.tw (林孟希)

學校 : 國立臺灣大學
編號 : 201083
來源 : [140.112.25.29]
最後登入時間 :
2025-09-26 16:05:38

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int w; cin>>w;
    cin.ignore();
    string s; getline(cin,s);
    int t; cin>>t;
    for(int i=0;i<w;i++) s+=" ";
    for(int i=0;i<w;i++) s.insert(0," ");
    for(int i=t;i<t+w;i++) cout<<s[i];
}