//How to figure out if a word is already in a file? If it is, increase the count by 1, if not, add the word to the vector.
//Also, the comparison is case sensitive.
#include <vector>
#include <cctype>
#include <string>
#include <fstream>
using namespace std;
ifstream openFile;
struct data
{
string word;
int appear;
int length;
};