1/*#pragma settings AddAndTrueToLoopCondition*/ 2 3void main() { 4 int c = 0; 5 for (int i = 0; i < 4 || c < 10; ++i) { 6 c += 1; 7 } 8} 9