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. public int getInput()
  10. {
  11. return input.nextInt();
  12. }
  13. }
');