#输入句子,并按照空格分隔
str = input().split(' ')
#将句子反序输出
str.reverse()
print(' '.join(str))