Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package io;
  2. import java.io.*;
  3.  
  4. public class ConsoleInput {
  5.    
  6.     public static void main(String[]args) throws IOException{
  7.         BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
  8.         String str=br.readLine();
  9.         System.out.println(str);
  10.     }
  11.  
  12. }