9 lines
245 B
Java
9 lines
245 B
Java
class Main {
|
|
public static void main(String args[]) throws java.io.IOException {
|
|
browserlexer b =
|
|
new browserlexer (new java.io.InputStreamReader(System.in));
|
|
int ret = b.yylex();
|
|
while (ret != -1) { ret = b.yylex(); }
|
|
}
|
|
}
|