int x = 0; int sum = 0; int pos = 15; textSize(14); background(140, 50, 50); while (x < 7) { text(sum, pos, pos + 10); x++; sum = sum + x; pos = pos + 10; }