LARA // Prints n^2 for n=1...10 i = 0; j = 1; while (i < 10) { println("", j); i = i + 1; // increment counter j = j + 2*i+1; }