#include #include using namespace std; int main() { string word; int pos; cerr << "Please enter in a word: "; getline(cin,word); pos=word.find("hi"); return 0; }