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

/*
 *
 * 3.3
 *
 *
 */

using std::string;
using std::cout;
using std::cin;
using std::cerr;
using std::clog;
using std::endl;
int main () {

	string word;
	getline(cin, word); // Getline does not care about anything except the newline character. If it sees a newline it stops reading.
	cout << word << endl;
	return 0;
}