first = 'Tom' last = "Smith" name = first + ' ' + last print(name) # Tom Smith