【蓝桥杯】 ALGO-233 字符串合并

资源限制
时间限制:1.0s 内存限制:256.0MB

问题描述
  输入两个字符串,将其合并为一个字符串后输出。

输入格式
  输入两个字符串

输出格式
  输出合并后的字符串

样例输入
一个满足题目要求的输入范例。
Hello

World

样例输出
HelloWorld

数据规模和约定
  输入的字符串长度0

提交代码

#include 
using namespace std;
int main()
{
	string s1, s2;
	cin >> s1 >> s2;
	cout << s1 + s2 << endl;
	return 0;
}

你可能感兴趣的:(数据结构与算法,蓝桥杯)