Blame view

P26041_en/S001-AC.cc 193 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>

using namespace std;

string read()
{
	string str;
	cin >> str;
	if(cin.eof())
	{
		return "";
	}
	return read() + str + "\n";
}
int main()
{
	cout << read();
	return 0;
}