/* Author Name: Baljeet S. Malhotra */
/* Student ID:  XXXXXXXXXXX         */ 
/* Program Name: String-example.cpp */
/* Program Description: Example     */
/* Date of creation: 14th Oct. 2004 */
/* Lab section: XX                  */

#include <iostream>
#include <string>

using namespace std;

int main()
{

 string S1 = "This is test";
 cout << "Enter  a sentence: ";
 getline(cin, S1);
 cout << S1 << endl;
 return 0;
}
