1. Please be careful with your input. My input file was
    LONG BUSINESS NAME
    PLACE ERROR
    LONG ANIMAL NAME
    ACTIONING ERROR
    
    Your program should never include either of the ERROR values in the output.
  2. Please break long output lines.
    cout << "quite dead. When I tried to return it, the clerk said that it was" << endl;
    
    would be easier to read if it were
    cout << "quite dead. When I tried to return it,"
         << " the clerk said that it was" << endl;
    
  3. Indent everything inside of { }, including the return statement
  4. It is a sin to do this
    string animal,
           location;
    
    int main() {
    
    These are called global variables and are a problem. Don't do this.