Basically, what i would like is if the two letters are attached together (NOT seperated) in the string, it will say good, if not the bad.
Example:
#include <iostream>
#include <string>
int main ()
{
string letters = "or";
string test = "The man went to the store.";
//here is the letters "or"are attatched together in this string, it will out "good" (just for debugging)
system("pause");
return 0;
}