Answer:
Following are the program is given below
#include <iostream> // header file
#include<string> // header file
using namespace std; // namespace
int main() // main function
{
string fname,lname; // variable declaration
cin>>fname>>lname; // Read the input by user
cout<<lname; // print last name
cout<<", "; // display comma
cout<<fname<<endl; // display first name
return 0;
}
Output:
Maya Jones
Jones, Maya
Explanation:
Following are the description of program .