/* Author Name: Baljeet S. Malhotra */
/* Student ID:  XXXXXXXXXXX         */ 
/* Program Name: String-example.cpp */
/* Program Description: Example     */
/* Date of creation: 14th Oct. 2004 */
/* Lab section: XX                  */

#include <iostream>
#include <string>

using namespace std;

int main()
{

 string S1 = "This is test";
 string S2 = "Test"; 
 
 cout << S1.find(S2, 2);

 return 0;
}
