while True:
    try:
        s = input().split() #先把句子切分成单词列表
        print(' '.join(s[::-1]))#逆序输出,空格分隔
    except:
        break