#53797: Python解答(附防呆)


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


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