Main.cpp: In function 'int main()':
Main.cpp:32:13: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'lli*' {aka 'long long int*'} [-Wformat=]
32 | scanf("%d %d", &n, &t);
| ~^ ~~
| | |
| int* lli* {aka long long int*}
| %lld
Main.cpp:32:16: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'lli*' {aka 'long long int*'} [-Wformat=]
32 | scanf("%d %d", &n, &t);
| ~^ ~~
| | |
| int* lli* {aka long long int*}
| %lld
Main.cpp:50:17: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'lli*' {aka 'long long int*'} [-Wformat=]
50 | scanf("%d %c", &m, &c);
| ~^ ~~
| | |
| int* lli* {aka long long int*}
| %lld
Main.cpp:32:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
32 | scanf("%d %d", &n, &t);
| ~~~~~^~~~~~~~~~~~~~~~~
Main.cpp:35:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
35 | scanf(" %c",&c);
| ~~~~~^~~~~~~~~~
Main.cpp:40:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
40 | scanf(" %c",&c);
| ~~~~~^~~~~~~~~~
Main.cpp:50:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
50 | scanf("%d %c", &m, &c);
| ~~~~~^~~~~~~~~~~~~~~~~