/in/foo.c: In function 'runnian':
/in/foo.c:4:40: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
4 | if (a % 400 == 0 || a % 4 == 0 && a % 100 != 0)
| ~~~~~~~~~~~^~~~~~~~~~~~~~~
/in/foo.c: In function 'main':
/in/foo.c:11:17: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'long long int *' [-Wformat=]
11 | scanf("%d %d", &a, &b);
| ~^ ~~
| | |
| int * long long int *
| %lld
/in/foo.c:11:20: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long long int *' [-Wformat=]
11 | scanf("%d %d", &a, &b);
| ~^ ~~
| | |
| int * long long int *
| %lld