Answer:
print("Please enter three names:")
name1 = input()
name2 = input()
name3 = input()
print(name3 + " " + name2 + " " + name1)
Step-by-step explanation:
*The code in Python.
Ask the user to enter three names
Store these names in variables name1, name2 and name3
Print the variables in the following order name3, name2, name1