#53797: Python解答(附防呆)


benson.lei.0407@gmail.com (某個解程式的人)

學校 : 不指定學校
編號 : 325385
來源 : [36.226.106.135]
最後登入時間 :
2025-10-06 19:13:54

user_input = input().strip()
if not user_input:
    print("Error: input cannot be empty.")
else:
    print(f"hello, {user_input}")