Run ID:117644

提交时间:2025-04-19 16:57:41

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char n[1000],m[1000],sx[1000]={0}; int b=0; cin>>n; cin>>m; cin>>b; strcat(n,m); cout<<n[b-1]; return 0; }