postmen.cpp: In function 'void insert(int, int)':
postmen.cpp:8:20: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
8 | bloom[(x*123456789+y^135798642)*987654321&0x7ffffff]=true;
| ~~~~~~~~~~~^~
postmen.cpp:9:20: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
9 | bloom[(x*987654321+y^123456789)*135798642&0x7ffffff]=true;
| ~~~~~~~~~~~^~
postmen.cpp:10:20: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
10 | bloom[(x*135798642+y^987654321)*123456789&0x7ffffff]=true;
| ~~~~~~~~~~~^~
postmen.cpp: In function 'bool count(int, int)':
postmen.cpp:13:27: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
13 | return bloom[(x*123456789+y^135798642)*987654321&0x7ffffff] and
| ~~~~~~~~~~~^~
postmen.cpp:14:21: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
14 | bloom[(x*987654321+y^123456789)*135798642&0x7ffffff] and
| ~~~~~~~~~~~^~
postmen.cpp:15:21: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
15 | bloom[(x*135798642+y^987654321)*123456789&0x7ffffff];
| ~~~~~~~~~~~^~