5 lines
43 B
Python
5 lines
43 B
Python
|
a=input()
|
||
|
b=a.split()
|
||
|
b.reverse()
|
||
|
print(b)
|