art.cpp: In function 'int main()':
art.cpp:16:23: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'lld* {aka long long int*}' [-Wformat=]
scanf("%d%d", &X, &Y);
~~ ^
art.cpp:16:23: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'lld* {aka long long int*}' [-Wformat=]
art.cpp:11:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
art.cpp:16:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &X, &Y);
~~~~~^~~~~~~~~~~~~~~~