7 lines
93 B
C
7 lines
93 B
C
int main() {
|
|
int lol = 0;
|
|
for (int i = 0; i != 100000000; i++) {
|
|
lol++;
|
|
}
|
|
return lol;
|
|
} |