#include #include using namespace std; int main() { string s1 = "this is a test"; int n; n = s1.find("test"); cout << n << endl; return 0; }