viewing paste c++ input | C++

Posted on the | Last edited on
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <iostream>
 
using namespace std;
int main () {
    
    string str;
    
    cin >> str;
    
    cout << "You typed: " << str;
    
    return 0;
}
 
Viewed 1332 times, submitted by Streusel.