#include <iostream>   
#include <string>

using namespace std;

string First;
string Last;

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

  cout << "Please enter your last name: ";
  cin >> Last;

  cout << First + ' ' + Last + " thinks Huddell is a fine dancer!" << endl;

  return 0;
}
