#include <iostream> using namespace std; int main() { char str[30] = { 0 }; cin.getline(str, sizeof(str)); int m; cin >> m; // write your code here...... char* ptr = str; ptr+=m-1; cout<<ptr<<endl; return 0; }