import org.pureprogrammer.Utils; public class Selection2 { public static void main(String[] args) { final int x = Utils.stoiWithDefault(args[0], 0); System.out.println("Start..."); if (x > 10) { System.out.println("Greater than 10"); } else { System.out.println("Less than or equal to 10"); } System.out.println("Finish..."); } }