document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  *
  3.  * @author Steve D.
  4.  * @version 1.0.1
  5.  */
  6. import java.util.Scanner;
  7.  
  8. public class Keypad
  9. {
  10.     private Scanner input;
  11.    
  12.     public Keypad()
  13.     {
  14.         input = new Scanner( System.in );
  15.     }
  16.    
  17.     public int getInput()
  18.     {
  19.         return input.nextInt();
  20.     }
  21.    
  22. }
');