#include<stdio.h>
#include<string.h>
int main(){
void copystr(char *p1,char *p2,int m);
char str1[20],str2[20];
int m;
gets(str1);
scanf("%d",&m);
if(strlen(str1)<m)
printf("input error!");
else{
copystr(str1,str2,m);
printf("%s",str2);}
return 0;
}
void copystr(char *p1,char *p2,int m){
int n=0;
p1=p1+m-1;
while(*p1!='\0'){
*p2=*p1;
p1++;
p2++;
}
*p2='\0';
}