#37722: Python解法


a055488@stdmail.nssh.ntpc.edu. ... (白魂)


用input將字串輸入 (記得用隱性輸入)

加上"hello,",將結果輸出。("hello,",s)的結果是hello, s,("hello,"+s)的結果是hello,s 所以前者才符合題目要求

另外字串和變數不能加在同一格裡 例如("hello, s")或("hello,+s")

s=input()
print("hello,",s)