#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 = NULL;
    ptr = &str[m - 1];
    cout << ptr << endl;

    return 0;
}