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