mirror of https://github.com/me50/kukemuna.git
7 lines
105 B
Python
7 lines
105 B
Python
|
|
name = input("What's your name? ")
|
||
|
|
|
||
|
|
if name:
|
||
|
|
print(f"hello, {name}")
|
||
|
|
else:
|
||
|
|
print("hello, world")
|