<html>
 

<body>

<script language ="JavaScript">
<!--
document.write("<PRE>")
var i,j,total
for(i=1;i<10;i++)
{//i loop
for(j=1;j<10;j++)
{//j loop
  total=i*j
  total=" "+total
  if(total<10)total=" "+total
  document.write(total)
  }//j loop
  document.write("<BR>")
}//i loop
document.write("</PRE>")
//-->
</script>
</body>
</html>