public static void main(String[] args) {
// TODO Auto-generated method stub
byte[] b = new byte[100];
int count;
try {
count = System.in.read(b);
for (int i = 0; i <= count - 1; i++) {
System.out.print((char) b[i]);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}