#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) using namespace std; typedef pair P; llint n, k; string s; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> k; cin >> s; string ans = s.substr(k-1); string t = s.substr(0, k-1); if((n-k+1)%2) reverse(t.begin(), t.end()); ans += t; cout << ans << endl; return 0; }