8 lines
84 B
Python
8 lines
84 B
Python
|
|
|
|
print("hello world")
|
|
|
|
name = input("what is your name: ")
|
|
|
|
print("hello " + name)
|