Final answer:
The student's request can be addressed by creating a simple Python program that reads in a first and last name and outputs them as 'Last Name, First Name'. String formatting is used to achieve the desired output.
Step-by-step explanation:
A student wishes to write a program that accepts a person's first and last name and then outputs it in the format: Last Name, First Name. This can be achieved through string manipulation techniques in many programming languages. Here is a simple example in Python:
# Prompt user for their first and last name
first_name = input('Please enter your first name: ')
last_name = input('Please enter your last name: ')
# Format and output the full name
formatted_name = f'{last_name}, {first_name}'
print(formatted_name)
When executed, this program will ask the user to enter their first and last name separately, and then it will display their full name with the last name first, followed by a comma, and then the first name, just as the student requested.