Bitwise Exclusive XOR

Problem Link

Solution by SaoriKido100 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