// split your insertion operators onto 2 lines

#include 

int main(){
      // first, if you didn't know >> is your insertion operator
      // >> is your extraction operator
      // now you can split either if  you need to
      // for example if one of your lines is too long
      // split it in half to two lines for readability

      // for example...the folowing 2 examples print the 
      // same output, but the 2nd is more readable
      // BAD 
      cout << "Hello" << name << " you are very " << adjective << " and you are my favorite person in " << city << "!!!!!!!!!!" << endl << endl ;
      // GOOD
      cout << "Hello" << name << " you are very " ;
      cout << adjective << " and you are my favorite" ;
      cout << " person in " << city << "!!!!!!!!!!" ;
      cout << endl << endl ;
      return 0 ;
}