class One{ public static void main(String[] args) { String a, b; a = "Hello, "; b = "Larry!"; String c = a +b; // a variable can be declared early in the program or when it is to be used System.out.println(c); // prints c to the user } }