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