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

import java.util.*;

public class WrongInput {

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

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

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



