N,K=map(int,input().split()) S=input() ANS=S[K-1:] if (N-K)%2==1: ANS+=S[:K-1] else: ANS+=S[:K-1][::-1] print(ANS)