uzastopni.cpp: In function 'int main()':
uzastopni.cpp:29:18: warning: format '%d' expects argument of type 'int', but argument 2 has type 'll' {aka 'long long int'} [-Wformat=]
29 | printf("%d %d\n", j, j+i);
| ~^ ~
| | |
| int ll {aka long long int}
| %lld
uzastopni.cpp:29:21: warning: format '%d' expects argument of type 'int', but argument 3 has type 'll' {aka 'long long int'} [-Wformat=]
29 | printf("%d %d\n", j, j+i);
| ~^ ~~~
| | |
| int ll {aka long long int}
| %lld
uzastopni.cpp:25:15: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
25 | ll n;scanf("%lld", &n);
| ~~~~~^~~~~~~~~~~~