Bitwise Exclusive XOR

Problem Link

Solution by TheRealFertos100 pts

Code / Notes

#include <bits/stdc++.h>
using namespace std;

int main() {
	int a, b;
    cin >> a >> b;
    cout << (a ^ b) << endl;
}

Last updated 1 month, 1 week ago


« Back to problem