chessboard.cpp:61:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main () {
^
chessboard.cpp: In function 'int main()':
chessboard.cpp:62:26: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
scanf("%lld %d", &n, &k);
^
chessboard.cpp:64:55: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
ll a, b, c, d; scanf("%d %d %d %d", &a, &b, &c, &d);
^
chessboard.cpp:64:55: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
chessboard.cpp:64:55: warning: format '%d' expects argument of type 'int*', but argument 4 has type 'long long int*' [-Wformat=]
chessboard.cpp:64:55: warning: format '%d' expects argument of type 'int*', but argument 5 has type 'long long int*' [-Wformat=]
chessboard.cpp:62:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld %d", &n, &k);
^
chessboard.cpp:64:56: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
ll a, b, c, d; scanf("%d %d %d %d", &a, &b, &c, &d);
^