10 lines
116 B
C
10 lines
116 B
C
|
#include<stdio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int counter = 100352 - 352;
|
||
|
while(counter) {
|
||
|
counter = counter - 1;
|
||
|
}
|
||
|
}
|