#53769: python簡單解


angus7315197@gmail.com (小章魚)

學校 : 不指定學校
編號 : 288474
來源 : [36.239.186.58]
最後登入時間 :
2025-09-22 23:17:25

def re(ReList):
    for i in range(len(ReList)):
        ReList[i] = ReList[i][::-1]    # 反轉每一項字串
    return " ".join(ReList)    # 以空格隔開傳回去
while True:
    try:    # 異常處理
        n = list(map(str, input().split()))    # 輸入存成串列
        print(re(n))
    except EOFError:
        break