#40622: 應該很節儉了


0801elmer666@gmail.com (薛冠志)


a = str(input())
print('hello, %s'%(a))
#41470: Re: 應該很節儉了


ray2006950712@gmail.com (Ray Liu)


a = str(input())
print('hello, %s'%(a))


還能更節儉

print(f'hello, {input()}')

#42870: Re: 應該很節儉了


0801elmer666@gmail.com (薛冠志)


a = str(input())
print('hello, %s'%(a))


還能更節儉

print(f'hello, {input()}')

哈哈 好像也是 但新手不一定會ㄟ

#44204: Re: 應該很節儉了


chouwai911221 (waichou)


a = str(input())
print('hello, %s'%(a))


還能更節儉

print(f'hello, {input()}')

哈哈 好像也是 但新手不一定會ㄟ

用lambda也有一樣效果
(lambda x:print(f"hello, {x}"))(input())