semiexpress.cpp: In function 'int main()':
semiexpress.cpp:9:20: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
9 | int n,m,K;scanf("%i%i%i",&n,&m,&K);
| ~~~~~^~~~~~~~~~~~~~~~~~~
semiexpress.cpp:11:19: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | ll A,B,C;scanf("%lld%lld%lld",&A,&B,&C);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
semiexpress.cpp:12:15: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | ll T;scanf("%lld",&T);
| ~~~~~^~~~~~~~~~~
semiexpress.cpp:13:43: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | ll a[m+10];for(int i=1;i<=m;i++) scanf("%lld",&a[i]);
| ~~~~~^~~~~~~~~~~~~~