/* Correct a/** A simple program with a compile-time error
 *
 *  @author Lee Lin 2/11/03
 */
public class DebugError {

  public static void main (String[] args) {


    System.out.println ("Hello World!");

    try {
      int numberValue = 0;
      if (args.length == 1) {
	    numberValue = Integer.parseInt (args[0]);
      }
    }

    catch (NumberFormatException e) {
      System.out.println ("You didn't input a number");
    }


    System.out.println ("One plus the number you gave me as input is: " +
			(numberValue + 1));



  }


}


