Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95948 冯诚阳 C语言7.19 C++ Accepted 0 MS 272 KB 167 2024-11-02 15:13:40

Tests(1/1):


Code:

#include<iostream> #include<cstring> using namespace std; int main() { string a,b,c; getline(cin,a); getline(cin,b); c=a+b; cout<<c<<endl; return 0; }