Bitwise Exclusive XOR
Problem LinkSolution by TheRealFertos — 100 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