summaryrefslogtreecommitdiff
path: root/9p18.cpp
blob: e7df6fa0a93dbceebdcf716d5914f715e16d5e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
#include <deque>

/*
 *
 * 9.18
 *
 *
 */

int main () {

	std::string input;
	std::deque<std::string> ds;
	while(std::cin >> input) {
		ds.push_back(input);
	}

	for(auto cbeg = ds.cbegin() ; cbeg != ds.cend() ; ++cbeg) {
		std::cout << *cbeg << " ";
	}

	std::cout << std::endl;
	return 0;
}