#include #include using namespace std ; int main() { string s1; cout << "Enter a sentence: "; getline(cin,s1); cout << "You entered: " << s1 << endl;; }