#include #include using namespace std; int main() { string FirstName("David"); string SecondName("Sherrill"); string FullName = FirstName + " " + SecondName; // The next line prints "David Sherrill" with a space between names cout << FullName << endl; return 0; }