import java.io.*;
public class ReadTestb {
public static void main (String [] args) throws IOException {
FileReader fis = new FileReader ("hallo.txt");
int ch;
while ((ch = fis.read ()) != -1)
System.out.print ((char)ch);
fis.close ();
}
}