joi2019_ho_t1.cpp: In function 'int main()':
joi2019_ho_t1.cpp:8:15: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'int*' [-Wformat=]
8 | scanf("%lld%lld",&n,&m);
| ~~~^ ~~
| | |
| | int*
| long long int*
| %d
joi2019_ho_t1.cpp:8:19: warning: format '%lld' expects argument of type 'long long int*', but argument 3 has type 'int*' [-Wformat=]
8 | scanf("%lld%lld",&n,&m);
| ~~~^ ~~
| | |
| | int*
| long long int*
| %d
joi2019_ho_t1.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
8 | scanf("%lld%lld",&n,&m);
| ~~~~~^~~~~~~~~~~~~~~~~~
joi2019_ho_t1.cpp:11:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | scanf("%s",s[i]+1);
| ~~~~~^~~~~~~~~~~~~