string firstName = "John"; string lastName = "Doe"; string fullName = firstName + " " + lastName; cout << fullName;