/* greeting2.cpp greets its user.
 *
 * Input:  The name of the user
 * Output: A personalized greeting
 ******************************************************/

#include <iostream.h>               // cin, cout, <<, >>
#include <string>                   // string

int main()
{
   cout << "Please enter your first name: ";
   string firstName;
   cin >> firstName;

   cout << "\nWelcome to the world of C++, " << firstName << "!\n";

   return 0;
}


