#include using namespace std; // Simple example of bitwise exclusive or int main() { unsigned int x ; x= 7^4; cout << x << endl; return 0; }