/* WrongInput.java
 * To find out what happens when user enters wrong input.
 * Aaron Tan
 */

import java.util.*;

public class WrongInput {

   public static void main(String[] args) {
      Scanner scanner = new Scanner(System.in);

      System.out.print("Enter an integer: ");
      int value = scanner.nextInt();

      System.out.println("value = " + value);
   }
}


