A Java Program to declare and initialize Integer variables and print them on the Standard Output Device.
publicclass JAVA_002 { publicstaticvoid main(String[] args) { int value_1=5; int value_2=10; long sum=0; sum=value_1+value_2; System.out.println("Value_1 = " + value_1); System.out.println("Value_2 = " + value_2); System.out.println("Sum = Value_1 + Value_2 = " + sum); } }