9 lines
145 B
Plaintext
9 lines
145 B
Plaintext
|
/*#pragma settings AddAndTrueToLoopCondition*/
|
||
|
|
||
|
void main() {
|
||
|
int c = 0;
|
||
|
for (int i = 0; i < 4 || c < 10; ++i) {
|
||
|
c += 1;
|
||
|
}
|
||
|
}
|