public class MainClass { public static void main(String[] argv) { String s = "this is a test"; System.out.println(s.indexOf("is")); } }
2