document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Write a description of class InputReader here.
  3.  *
  4.  * @author (aristya vika )
  5.  * @version (11.11.20)
  6.  */
  7. import java.util.*;
  8. public class InputReader
  9. {
  10.    String kata;
  11.     public String getInput()
  12.     {
  13.        Scanner sc= new Scanner (System.in);
  14.        kata=sc.nextLine();
  15.        return kata;
  16.     }
  17. }
');