#29243: 超級簡單python解法


mashiro0913 (饅頭)


兩行就夠了我說的對吧

a=str(input())

 

print("hello, %s" %a)

#29246: Re:超級簡單python解法


a0962014248gg@gmail.com (李福昌)


兩行就夠了我說的對吧

a=str(input())

 

print("hello, %s" %a)

 

print(f"hello, {input()}")
#29287: Re:超級簡單python解法


xenazaron@gmail.com (廬子問)


print('hello, ' + input())