// Illustrates difference between concatenation and addition in the print // and println methods public class Cat2 { public static void main(String[] args) { System.out.println("23 and 56 concatenated: " + 23 + 56); System.out.println("23 and 56 added: " + (23 + 56)); } }