public class testedebug
{
  public static void main( String args[])
  {
    int i=0;
    int x=4;
    while(i<10)
    {
      System.out.println( x + " x " + i + " = "+(x*i));
      x=x+i;
      i=i+2;
    }
  }
}