5 lines
No EOL
111 B
Python
5 lines
No EOL
111 B
Python
# Get the user's name
|
|
name = input('Enter your name:\n')
|
|
|
|
# Print hello statement
|
|
print("Hello, " + name + "!") |