public class JLS_14_14_ForStatement_9 { public static void main (String args[]) { for (;;) { break; } System.out.println(1); } }