nicegift.cpp:18:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
18 | main(){
| ^
nicegift.cpp: In function 'int main()':
nicegift.cpp:21:5: error: '__int32' was not declared in this scope; did you mean '__rintf32'?
21 | __int32 ans=1;
| ^~~~~~~
| __rintf32
nicegift.cpp:35:30: error: 'ans' was not declared in this scope; did you mean 'abs'?
35 | printf("%d ",ans++);
| ^~~
| abs
nicegift.cpp:20:15: warning: unused variable 'j' [-Wunused-variable]
20 | int n,m,i,j,sum=0;
| ^
nicegift.cpp:10:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
10 | #define scan2(a,b) scanf("%lld %lld",&a, &b);
| ~~~~~^~~~~~~~~~~~~~~~~~~~
nicegift.cpp:22:5: note: in expansion of macro 'scan2'
22 | scan2(n,m)
| ^~~~~
nicegift.cpp:9:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
9 | #define scan1(a) scanf("%lld",&a);
| ~~~~~^~~~~~~~~~~
nicegift.cpp:24:9: note: in expansion of macro 'scan1'
24 | scan1(q[i])
| ^~~~~