1 2 3 4 5 6 7 8 9
int main() { int i = 0; for (int j = 3; j < 20; j++) { i += j; i = i - 1; // break here } return i; }