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(); } } }