xorsum.cpp: In function 'void F(long long int)':
xorsum.cpp:11:17: warning: unused variable 'j' [-Wunused-variable]
11 | long long i,j,t;
| ^
xorsum.cpp: In function 'int main()':
xorsum.cpp:42:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
42 | scanf("%lld",&N);
| ~~~~~^~~~~~~~~~~
xorsum.cpp:43:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
43 | for(i=1;i<=N;i++) scanf("%lld",&all[i]);
| ~~~~~^~~~~~~~~~~~~~~~
xorsum.cpp:44:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
44 | scanf("%lld",&M);
| ~~~~~^~~~~~~~~~~
xorsum.cpp:46:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
46 | for(i=0;i<M;i++) scanf("%lld %lld %lld",&tt[i].first.first,&tt[i].first.second,&tt[i].second);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~