public class SyntaxExample6 { public static void main (String[] argv) { System.out.println ("Value of i is: "); // Declare and initialize i int i = 5; // Print out its value to the screen. System.out.println (i); } }