4 lines
68 B
Python
4 lines
68 B
Python
|
def say_hello(x):
|
||
|
print("hello",x)
|
||
|
return
|
||
|
say_hello(input())
|