// concordance
// reads in text from standard input and uses a map to create a concordance
// which is displayed
#include <iostream>
#include <map>
#include <cstdlib>
using namespace std;

string fix(string s);   // removes trailing punctuation and converts
                          // to lower case 
int main()
{
    map <string, int> freq;
    map <string, int> :: iterator it;
    string s;
    cout << "Enter text terminate with EOF " << endl;
    // read in text and build the concordance
    // Complete this
    cout << "Concordance "<< endl;
    // display the map
    // complete this
    return 0;
}


