postmen.cpp: In function 'void insert(int, int)':
postmen.cpp:9:20: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
9 | bloom[(x*123456789+y^135798642)*987654321&0x7ffffff]=true;
| ~~~~~~~~~~~^~
postmen.cpp:10:20: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
10 | bloom[(x*987654321+y^123456789)*135798642&0x7ffffff]=true;
| ~~~~~~~~~~~^~
postmen.cpp:11:20: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
11 | bloom[(x*135798642+y^987654321)*123456789&0x7ffffff]=true;
| ~~~~~~~~~~~^~
postmen.cpp: In function 'bool count(int, int)':
postmen.cpp:14:27: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
14 | return bloom[(x*123456789+y^135798642)*987654321&0x7ffffff] and
| ~~~~~~~~~~~^~
postmen.cpp:15:21: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
15 | bloom[(x*987654321+y^123456789)*135798642&0x7ffffff] and
| ~~~~~~~~~~~^~
postmen.cpp:16:21: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
16 | bloom[(x*135798642+y^987654321)*123456789&0x7ffffff];
| ~~~~~~~~~~~^~
postmen.cpp: In function 'int main()':
postmen.cpp:20:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
20 | scanf("%d%d", &n, &m);
| ~~~~~^~~~~~~~~~~~~~~~
postmen.cpp:24:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
24 | scanf("%d%d", &a, &b), a--, b--;
| ~~~~~^~~~~~~~~~~~~~~~