str1 = input().split()
str1.reverse()

str1 = ' '.join(str1)
print(str1)