art.cpp: In function 'll f(int)':
art.cpp:8:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
8 | if(i < 0) return 0; return qs[i];
| ^~
art.cpp:8:22: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
8 | if(i < 0) return 0; return qs[i];
| ^~~~~~
art.cpp: In function 'int main()':
art.cpp:11:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | int n; scanf("%d", &n);
| ~~~~~^~~~~~~~~~
art.cpp:13:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | ll a, b; scanf("%lld %lld", &a, &b);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~