package ch19;
import java.io.*;
public class Ch1906
{
public static void main(String[] args) throws IOException
{
//Reader시리즈 스트림클래스는 문자열처리에 적합
InputStreamReader in = new InputStreamReader(System.in);
int ch;
String result="";
while((ch=in.read())!= -1)
{
result +=(char)ch;
}
System.out.println("result : "+result);
OutputStreamWriter out = new OutputStreamWriter(System.out);
out.write(result);
out.close();
}
}