summaryrefslogtreecommitdiff
path: root/9p19.cpp
blob: 6c4747627ee405a66c263da080659a6830156885 (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 <list>

/*
 *
 * 9.19
 *
 * Changes needed: Include list, Change deque in to list. 
 */

int main () {

	std::string input;
	std::list<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;
}