public class JLS_14_9_IfStatement_2 { public static void main(String[] args) { if(args.length != 0) ; else { System.out.println("OK"); } } }