// A program demonstrating different usages of the "+" operator: // 1. For string concatenation. // 2. For arrithmetic addition. class AddOperator { public static void main (String[] args) { System.out.println ("Here is the concatenation of two integer numbers : " + "12345"+"6789"); System.out.println ("Their sum is: " + (12345 + 6789)); System.out.println ("Guess the numbers!"); } }