public class Negative {
private static void show(int x) {
System.out.println("<tr><td>" + x + "<td>" + (-x));
}
public static void main(String[] args) {
System.out.println("<html><head>");
System.out.println("<link rel=\"stylesheet\" type=\"text/css\" href=\"../teaching.css\">");
System.out.println("</head><body><table border><tr><td>X<td>-X");
show(123456789);
show(Integer.MAX_VALUE);
show(Integer.MIN_VALUE);
System.out.println("</table></body></html>");
}
}