So I have this funciton: ```java
private static String readInput(InputStream f) throws java.io.IOException {
Reader stdin = new InputStreamReader(f);
StringBuilder buf = new StringBuilder();
char input[] = new char[1024];
int read = 0;
while ((read = stdin.read(input)) != -1) {
buf.append(input, 0, read);
}
return buf.toString();
}```
After using functino I am analysing the string I get but I never ever match anything with "\n" why?