Concatenating

Example:

a = "Hello"
b = "World"
output = a + " " + b
print(output)