9 lines
88 B
C
9 lines
88 B
C
int X = 0;
|
|
|
|
int main() {
|
|
int i;
|
|
for (i = 0; i < 100; i++)
|
|
X += i;
|
|
return 0;
|
|
}
|