sequence.cpp: In function 'std::pair<long long int, long long int> query(ll)':
sequence.cpp:30:16: warning: comparison of integer expressions of different signedness: 'std::vector<line>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
30 | if(V.size()<=a)a=V.size()-1;
| ~~~~~~~~^~~
sequence.cpp:31:19: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<line>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | else while(a+1<V.size()&&cross(V[a+1], V[a])<=x)a++;
| ~~~^~~~~~~~~
sequence.cpp: In function 'int main()':
sequence.cpp:37:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
37 | for(scanf("%lld %lld", &n, &k);i++<n;)
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
sequence.cpp:39:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
39 | scanf("%lld", &A[i]);
| ~~~~~^~~~~~~~~~~~~~~