Assign secretID with firstName, a space, and lastName. Ex: If firstName is Barry and lastName is Allen, then output is:
Barry Allen
#include
#include
using namespace std;
int main() {
string secretID;
string firstName;
string lastName;
cin >> firstName;
cin >> lastName;
/* Your solution goes here */
cout << secretID << endl;
return 0;
}