import java.io.InputStream;
import java.io.FileInputStream;
public class StringLeserProg {
public static void main (String [] args) {
try {
FileInputStream fp = new FileInputStream("./StringLeserProg.java");
int x;
x = fp.read ();
while (x != -1) {
System.out.print ((char)x);
x = fp.read ();
}
}
catch (Exception i) {
System.out.println ("An Error");
}
}
}