Answer:
user_input=input()
short_names=user_input.split()
short_names.sort(reverse = True)
print(short_names)
Explanation:
You have to turn the sort reverse to true.
The sorting program is an illustration of the list variable and the sort method
The program written in Python, where comments are used to explain each action is as follows:
#This gets input for the names
nameInput=input()
#This splits the names into a list
splitName=nameInput.split()
#This reverses the list
splitName.sort(reverse = True)
#This prints the reversed list
print(splitName)
Read more about Python programs at:
https://brainly.com/question/16397886