aliens.cpp: In function 'bool qr(long long int, long long int)':
aliens.cpp:8:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (strcmp(X, "true") == 0)return 1; return 0;
^~
aliens.cpp:8:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if (strcmp(X, "true") == 0)return 1; return 0;
^~~~~~
aliens.cpp: In function 'int main()':
aliens.cpp:16:31: warning: unused variable 'j' [-Wunused-variable]
long long sx, sy, ex, ey, i, j, bef;
^
aliens.cpp: In function 'bool qr(long long int, long long int)':
aliens.cpp:7:19: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
char X[10]; scanf("%s", X);
~~~~~^~~~~~~~~
aliens.cpp: In function 'int main()':
aliens.cpp:15:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
long long n, x0, y0; scanf("%lld%lld%lld", &n, &x0, &y0);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
aliens.cpp:16:16: warning: 'sy' may be used uninitialized in this function [-Wmaybe-uninitialized]
long long sx, sy, ex, ey, i, j, bef;
^~
aliens.cpp:77:20: warning: 'sx' may be used uninitialized in this function [-Wmaybe-uninitialized]
long long m = (ex - sx + 1);
~~~^~~~
aliens.cpp:77:20: warning: 'ex' may be used uninitialized in this function [-Wmaybe-uninitialized]