/***************************************************************************
I, Jeremie Cathey, have written this program to how to interface with users.
***************************************************************************/
#include <iostream>
#include <string>
using namespace std;
void main()
{
 string Movie;
 string Music;
 cout<<"What is your favorite movie?"<<endl;
 cin>>ws;    //get CRLF (the end of line symbol) into ws(white space memory box)
 getline(cin, Movie);
 cout<<"I like "<<Movie<<" too. "<<endl;
 cout<<"What is your favorite kind of music?"<<endl;
 cin>>ws;    
 getline(cin, Music);
 cout<<"I like "<<Music<<" as well. "<<endl;
}

/******** I modify Jeremie's file *****/