public class InputstreamReadrDemo { public static void main(String[] args) throws IOException {
InputStreamReader isr = new InputStreamReader(System.in);
int x;
while((x=isr.read())!=-1){
System.out.print(x);
}
isr.close();
                }
}java  io