label( [ 0, B - 1 ], "Draw " + plural( A, "circle" ) + ".", "right", false );
drawRow( A, B - 3, "#6495ED", 1 );
label( [ 0, B - 2 ],
"If there" + ( B === 1 ? " is " : " are " ) + plural( B, "row" )
+ " with " + plural( A, "circle" ) + ( B === 1 ? "" : " each" )
+ ",<br>there are a total of how many circles?",
"right", false );
for ( var i = 1; i < B; i++ ) {
drawRow( A, B - 3 - i, "#28AE7B", A * i + 1 );
}