| 2 | using namespace std; |
| 3 | |
| 4 | int main() { |
| 5 | int a, b; |
| 6 | cin >> a >> b; // a �� b ����͂��� |
| 7 | cout << (a & b) << endl; // a AND b �̒l���o�͂��� |
| 8 | cout << (a | b) << endl; // a OR b �̒l���o�͂��� |
| 9 | cout << (a ^ b) << endl; // a XOR b �̒l���o�͂��� |
| 10 | return 0; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected