Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129091 罗安博 字符串拼接 C++ Accepted 2 MS 272 KB 188 2025-08-21 17:58:54

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { string a, b; int n; cin >> a >> b >> n; string c = a + b; cout << c[n - 1] << endl; return 0; }