while True:
try:
string = input()
new_string = ''
for i in string: # 去除输入字符串中的特殊字符并将其全部替换为空格得到新字符串
if i.isalpha():
new_string += i
else:
new_string += ' '
lst = new_string.split() # 将新字符串以空格拆分获取到列表lst
result = ''
for i in lst[::-1]: # 将lst中的元素倒叙拼接成字符串,并用空格隔开
result = result + i + ' '
print(result.strip()) # 输出拼接好的结果,注意去除末尾的空格
except:
break