题目描述
传说唐、宋时有人患怪病,腹内生虫;人说话,虫即小声应之,是为应声虫。现在你可以用程序实现一个应声虫吗? 从测试集获取输入内容,并打印输入的内容。
输入输出格式
输入格式
一行字符串。
输出格式
一行字符串。
输入输出样例
输入
hello world!
输出
hello world!
参考代码
#include<iostream>
#include<string>
using namespace std;
int main()
{
string ins;
getline(cin,ins);
cout<<ins<<endl;
return 0;
}