a = 'hello'
c = a + ' ' + 'there'
print(c)

hello there