generated from mwc/lab_names
8 lines
164 B
Python
8 lines
164 B
Python
# my_name = input("What is your name? ")
|
|
# ------------
|
|
# By MWC contributors
|
|
|
|
my_name = input("what is your name")
|
|
greeting = "Hello, " + my_name
|
|
print(greeting)
|
|
|