blob: b4a856426277bbc55d642f31106b44ba55025bf1 (
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
|
#include <iostream>
#include "sales_data.hpp"
#include "sales_item.hpp"
/*
*
* 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;
}
|