• Source
    1. #include <iostream>
    2. #define SIZE 10001
    3. using namespace std;
    4.  
    5. int main() {
    6. char s[SIZE];
    7. cin.getline(s,SIZE,NULL);
    8. cout << s;
    9. return 0;
    10. }