document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.util.Scanner;
  2.  
  3. public class Keypad
  4. {
  5.     private Scanner input;
  6.    
  7.     public Keypad()
  8.     {
  9.         input = new Scanner(System.in);
  10.     }
  11.    
  12.     public int getInput()
  13.     {
  14.         return input.nextInt();
  15.     }
  16. }
');