1426: 【C++】(填空)字符串连接(3)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:22 Solved:21

Description

将两个字符串连接。
复制以下代码,补充 下划线 和 ?的代码。


#include<iostream>
using namespace std;
int main()
{
	string s1, s2;
	getline(cin, s1);
	____________;
	s1 = ________;
	cout<<s1<<endl;
	return 0;
}

Input

两行字符串

Output

连接后的字符串

Sample Input Copy

123
abc

Sample Output Copy

123abc

Source/Category