#python好秀 while True: try: s,n=input().split() n=int(n) if s[n-1].isalpha(): print(s[:n]) else: print(s[:n-1]) except: break
#include <iostream> #include <string> using namespace std; int main(){ string str; int n; while(cin >> str >> n){ for(int i=0;i<n;i++) cout << str[i]; cout << endl; } return 0; } //string就有不输出半个汉字的功能