BC117 逆序输出

思路:

step1:倒序逐个输出;

代码如下:

n = input().split(' ')
for i in n[::-1]:
    print(i,end=' ')