这题简单

``` python []
while True:
    try:
        lst=list(map(str, input().split(" ")))#间隔转换成str类型
        lstl=lst[::-1]#逆序
        print(" ".join(lstl))#合并
    except:
        break