Blame view

P92998_en/S002-AC.cc 240 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
20
21
22
23
24
#include <iostream>

using namespace std;

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