a
b
a = 1; b = 5; while (a < b) { a++; b--; }
a = 1; b = 5; while ((a += 2) < b) { // careful: assignment used in expression! b--; }