public static void main(String args[]) throws IOException {
Properties in = new Properties();
in.load(System.in);
System.out.println("<!-- converted MacroTemplate init file -->");
Enumeration e = in.keys();
while (e.hasMoreElements()) {
String key = (String) e.nextElement();
String value = in.getProperty(key);
System.out.println("\n<definemacro name=\"" + key +
"\" global=\"true\">");