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.     public Keypad()
  7.     {
  8.         input = new Scanner( System.in );
  9.     }
  10.     public int getInput()
  11.     {
  12.         return input.nextInt();
  13.     }
  14. }
');