import *;
public class BufferedStreamDemo {
public static void main(String[] args) throws IOException {
BufferedReader stdin =new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter a line:");
System.out.println(stdin.readLine());
}
}