10 lines
114 B
C
10 lines
114 B
C
#include<stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int counter = 98304 + 1696;
|
|
while(counter--) {
|
|
counter = counter;
|
|
}
|
|
}
|