#include<bits/stdc++.h>
using namespace std;
int main()
{
char str[30];
while (fgets(str, 30, stdin))//与数组大小相同即可(一般根据题目数据范围得知),实际只能最多读29个最后一个系统默认分配‘\0’,与字符串数组的要求一致,如果实际读到的字符串<29,则会把'\n'读入
{
//cout << str << endl;
cout << str;//注意区分上面
}
//string s;
//while (getline(cin, s))//不会输入最后的回车
//{
// cout << s << endl;
//}
return 0;
}