Problem
Write a program that asks for the user's first, middle, and last names. The names should be stored in three different strings named firstName, middleName, and lastName. The program should then store, in a fourth string named nameArranger, the name arranged in the following manner: the last name followed by a comma and a space, followed by the first name and a space, followed by the middle name.
For example, if the user entered "John Harry Smith", it should store "Smith, John Harry" in the fourth string. Disqiay the contents of the fourth string on the screen.