python_string_concat_2.py:
x
 
a = "Hello"
b = "World"
c = a + " " + b
print(c)