直接对输入的字符串做分割并逆序处理,然后遍历打印,以空格为间隔

for words in reversed(input().split(' ')):
    print(words, end=' ')