mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
10 lines
120 B
Plaintext
10 lines
120 B
Plaintext
_ f(int a, int x) {
|
|
int y = 0;
|
|
int z = 0;
|
|
while ((y = x * x) > a) {
|
|
x -= 1;
|
|
z = 1;
|
|
}
|
|
return (y, z);
|
|
}
|