import java.io.IOException; public class ParseProspace { public static void main(String... args) throws IOException { ProspaceHandler printer = new ProspacePrinter(System.out, "UTF-8"); ProspaceParser parser = new ProspaceParser(printer); parser.parse(System.in, "UTF-8"); } }