Many documents use a specific format for a person's name. Write a program that reads a person's name in the following format:

firstName middleName lastName (in one line)

and outputs the person's name in the following format:

lastName, firstInitial.middleInitial.

Ex: If the input is:

Many documents use a specific format for a persons name Write a program that reads a persons name in the following format firstName middleName lastName in one l class=