class Two { public static void main(String[] args) { String a, b; a = "Hello, "; b = "Larry!"; String c = a + b; System.out.println(c.length()); // prints the number of characters of c } }