键盘输入两个字符串,将这两个字符串进行拼接后输出。
输入描述:
键盘输入两个字符串
输出描述:
输出两个字符串拼接后的结果
示例1
输入
hello nihao
输出
hellonihao
加载中...
#include
#include
using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); // write your code here...... return 0; }
hello nihao
hellonihao