import java.io.InputStream;
import java.io.FileInputStream;
public class StringLeserProg3 {
public static void main (String [] args) {
StringLeser l = new StringLeser();
l.readandprint();
}
public static class StringLeser {
StringLeser () {}
void readandprint (){
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");
}
}
}
}