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