#32270: answer dude and bro


Waynewang (unknown)

學校 : 不指定學校
編號 : 197617
來源 : [1.163.208.18]
最後登入時間 :
2022-10-02 19:09:24

while True: try: a = list(input()) # 將輸入的文字轉換成串列 b = a[::-1] # 反轉串列 output = ''.join(b) # 組合串列內容 print(int(output)) # 轉換成數字輸出 ( 消除 0 ) except: break