examination.cpp: In function 'int main()':
examination.cpp:17:49: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
17 | for (int i = 0; i < n; i++)ans += (a[i] >= x & b[i] >= y & a[i]+b[i]>=z);
| ~~~~~^~~~
examination.cpp:17:77: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
17 | for (int i = 0; i < n; i++)ans += (a[i] >= x & b[i] >= y & a[i]+b[i]>=z);
| ~~~~~~~~~^~~
examination.cpp:12:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | scanf("%d %d" , &n , &m);
| ~~~~~^~~~~~~~~~~~~~~~~~~
examination.cpp:13:33: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | for (int i = 0;i<n;i++)scanf("%d %d" , &a[i] , &b[i]);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
examination.cpp:16:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
16 | scanf("%d %d %d" , &x , &y , &z);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~