- package com;
- import java.io.*;
- public class iotest{
- public static void main(String args[]){
- BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
- String str = null;
- System.out.println(">>");
- try {
- str = buf.readLine();
- buf.close();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- System.out.println(">>>>>>>>>>>"+str);
- }
- }