5 lines
62 B
Python
5 lines
62 B
Python
s1 = "hello"
|
|
print s1 + " world"
|
|
|
|
s2 = s1 + " world"
|
|
print s2
|